Hand segmentation from an RGB and depth image obtained from kinect device
1 次查看(过去 30 天)
显示 更早的评论
Hi all. I am trying to use the dataset from this paper and segment hand from the image. I attach a sample RGB and depth image. I have written this code.
close all;
depth_map=load('3.txt');
imagesc(depth_map);
image=imread('4.jpg');
figur;imshow(image);
foo=depth_map;
min_v=min(foo(foo>0));
threshold=min_v+100;%threshold - varying this is not helping much but ofcourse will deteriorate
foo(foo>threshold)=0;
BW=imbinarize(foo);
figure; imshow(BW);%shown in result3.jpg file.
The result is shown in the result3,jpg file which is attached. As you can see even elbow comes. How do I segment just the hand? I am relatively new to RGB and depth images and kinect. Any help is greatly appreciated.
5 个评论
Shyam verma
2021-6-9
Hey! can you give the dataset as the link that you mentioned above for dataset is not working/showing error.
with regards
shyamverma345@gmail.com
回答(1 个)
Image Analyst
2017-8-19
If the person always has a black wrist band, then you should have 2 blobs, not 1, and then you can use bwareafilt() to extract the largest one, which will be the forearm, and then subtract that from the original mask to get only the hand.
forearmMask = bwareafilt(binaryImage, 1);
handMask = binaryImage & ~forearmMask;
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Kinect For Windows Sensor 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!