imcrop function problem for 16bit image 2019b

3 vues (au cours des 30 derniers jours)
Meshooo
Meshooo le 20 Sep 2019
Commenté : Meshooo le 18 Oct 2019
Dear all,
The following imcrop code gives an error in 2019b
I = imread('XX.tif');
[Icrop, rect] = imcrop(I, [ ]);
It seems that 2019b does't support [ ] with imcrop. If you are working with 16 bit images then you will be in trouble because you need to see the image before croping it, and for that you need to put the [ ].
Any idea how to overcome this problem?
Thank you in advance.
Meshoo
  6 commentaires
Meshooo
Meshooo le 11 Oct 2019
Modifié(e) : Meshooo le 11 Oct 2019
Hi Walter,
I couldn't understand exactly what do you mean. I am just runing my old codes in 2019 and got an error.
People working with uint16 images usually use [ ] to show the image on their screens, for example: imshow(I_unit16, [ ]).
Similarly, we need to use [ ] when croping uint16 image in order to dispaly the image before cropping it. That was possible in older versions of MATLAB but not in 2019b.
Regards,
Meshoo
Walter Roberson
Walter Roberson le 12 Oct 2019
Please name a particular release that documents using [] as a parameter to imcrop() . I looked through the archived documentation for several releases and could not find any evidence that it was ever a supported option.
Similarly, we need to use [ ] when croping uint16 image in order to dispaly the image before cropping it.
So display the image with imshow() with the documented [] option, and call imcrop() on the handle returned by imshow:
h = imshow(I, []);
[Icrop, rect] = imcrop(h);

Connectez-vous pour commenter.

Réponse acceptée

Walter Roberson
Walter Roberson le 12 Oct 2019
h = imshow(I, []);
[Icrop, rect] = imcrop(h);
  9 commentaires
Image Analyst
Image Analyst le 18 Oct 2019
Then you'll be making a lot of bug reports. There is a constant flow of functions either changing inputs, being deprecated, or being removed completely as versions progress through the years. I don't see how that, either filing bug reports or writing a custom wrapper and calling that from your code, is any better than just hitting the delete key 3 times.
Meshooo
Meshooo le 18 Oct 2019
For me it's already solved and thanks for the many help I got from all of you. For many other users it is still an issue.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Geometric Transformation and Image Registration dans Help Center et File Exchange

Produits


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by