Problem with ROI dimension - app designer
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I am using the attached app to select a ROI. One of the possible bugs is when the ROI width (app.col2) is bigger than the image x dimension (app.Ix1) so I added an if statement to fix it but then I get this error:
Index in position 2 exceeds array bounds. Index must not exceed 512.
Error in appROI/otsuthresholdSliderValueChanged (line 107)
app.Icrop = app.I(app.row1 : app.row2, app.col1 : app.col2, :);
Error while evaluating Slider PrivateValueChangedFcn.
The same issue will occur with the ROI height
Any idea why? and how to soilve it?
0 comentarios
Respuestas (1)
Walter Roberson
el 5 de Mzo. de 2022
Ir = size(app.I,1); Ic = size(app.C,1);
app.Icrop = app.I(max(1,app.row1) : min(Ir,app.row2), max(1,app.col1) : min(Ic,app.col2), :);
4 comentarios
Walter Roberson
el 7 de Mzo. de 2022
If you use the min() / max() then you do not need the if statements
When I test your code and draw the ROI over to the right border, then the sum of pos(1) and pos(3) is 0.5 greater than the width of your image.
I do not see relevant material in the documentation at this time, but in the past I have seen that for at least some kinds of ROI (not necessarily this kind) that when you give a point to an ROI, that it considers the point you give to be the center of the area, and that the coordinate it returns is intended to be the edge of the selected area. The edge of a selected area is generally 1/2 a pixel further over, so if the ROI was given coordinate 512 it would consider the edge of the area to be 512.5 . And after you add pos(1) and pos(3) you ceil() -- so the 512.5 gets rounded to 513, which is outside the image.
Look for example at the details of imcrop(): it is common to find that imcrop() created an area that is one pixel larger than you expect because of similar kinds of logic.
The min() / max() code I suggest will take care of keeping the coordinates within the image.
Ver también
Categorías
Más información sobre Image Processing Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!