how to calculate width and length of binary image?
3 views (last 30 days)
Show older comments
I need to calculate width and length of the binary image... PLZ SUGGEST A WAY
0 Comments
Accepted Answer
Image Analyst
on 18 Oct 2014
You can use the size() function:
[theLength, width] = size(binaryImage);
The first return argument, theLength, is the number of rows (the height), and the second output argument, width, is the number of columns.
As an aside, don't use length as the name of a variable since it's the name of a built-in function.
8 Comments
See Also
Categories
Find more on Get Started with MATLAB in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!