- Read images in MATLAB: https://www.mathworks.com/help/matlab/ref/imread.html
- Convert to grayscale: https://www.mathworks.com/help/matlab/ref/rgb2gray.html
- Logical operations for creating binary masks: https://www.mathworks.com/help/matlab/logical-operations.html
- Extract region properties: https://www.mathworks.com/help/images/ref/regionprops.html
convert binary map from pixel to geometric
1 回表示 (過去 30 日間)
古いコメントを表示
if i have the binary map bellow
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/271782/image.jpeg)
How can represent it in geometric coordinates
0 件のコメント
回答 (1 件)
Deep
2024 年 9 月 25 日
Hi Mohammed,
As per my understanding, you are trying to extract geometric coordinates of rectangles from an RGB JPEG image using MATLAB. To achieve this, you will need to convert the image to grayscale, create a binary mask using thresholding, and then use the MATLAB function “regionprops” to obtain properties like “BoundingBox” and “Centroid”.
For further guidance, you can refer to the following resources:
Additionally, the "Threshold Intensity Values" section under Chapter 3 of the MATLAB Onramp provides an excellent explanation of intensity thresholding: https://matlabacademy.mathworks.com/details/image-processing-onramp/imageprocessing
Hope this helps!
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Convert Image Type についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!