フィルターのクリア

Segment Coordinates of split screen

1 回表示 (過去 30 日間)
Steven Moran
Steven Moran 2017 年 12 月 27 日
コメント済み: Walter Roberson 2017 年 12 月 29 日
I split screen into segments for my classifier. I don't just want to classify each segment, I want the pixel coordinates of each segment as well. How do I do this?
thanks

採用された回答

Walter Roberson
Walter Roberson 2017 年 12 月 27 日
Are the segments all the same size? If so then you should be able to easily convert segment index to screen coordinates.
coordinates_of_start = (index - 1) * width_in_this_direction + 1;
coordinates_of_end = index * width_in_this_direction;
  2 件のコメント
Steven Moran
Steven Moran 2017 年 12 月 29 日
What value is the 'index' ?
how is this different from regionprops function?
thanks
Walter Roberson
Walter Roberson 2017 年 12 月 29 日
index is the number of the segment in a particular direction. So the 3rd segment down, 4th over, would call for index numbers 3 for vertical direction and 4 for horizontal direction.

サインインしてコメントする。

その他の回答 (1 件)

Image Analyst
Image Analyst 2017 年 12 月 28 日
編集済み: Image Analyst 2017 年 12 月 28 日
What do you mean by segmentation for your classifier? Is it like you want to segment the standard peppers.png demo image into purple region(s), red regions, green regions, and yellow regions, and you want the pixel coordinates of each segment (each class)? And you want to split up the screen to show masks for each segmentation (class)? If so, you can segment the image using whatever method you want, such as classify() function or the Color Thresholder app, then take the mask for each color class and use find() or regionprops() to get the (x,y) coordinates for each class.
  1 件のコメント
Steven Moran
Steven Moran 2017 年 12 月 28 日
The image is split into segments of equal size. Then each segment is classified in my deep learning algorithm. So the classification comes after the split occurs.
Each segment of pixels is classified, but I want each segment to also have its coordinates recorded because I'm coordinating that with mechanical stage movements.
Hope that makes sense. thanks for your answer

サインインしてコメントする。

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by