iOS: fix crash from overrelease in UIImageToMat (for 3.0)#3714
Merged
opencv-pushbot merged 1 commit intoopencv:masterfrom Feb 18, 2015
Merged
iOS: fix crash from overrelease in UIImageToMat (for 3.0)#3714opencv-pushbot merged 1 commit intoopencv:masterfrom
opencv-pushbot merged 1 commit intoopencv:masterfrom
Conversation
- previous pull request: opencv#3340
Contributor
|
👍 |
vpisarev
added a commit
that referenced
this pull request
Feb 18, 2015
mshabunin
pushed a commit
to mshabunin/opencv
that referenced
this pull request
Feb 24, 2015
For Bug opencv#3714, user use the imshow() function without calling namedWindow() properly, because user did not know the implicit rule for imshow(). (i.e. without calling namedWindow implied calling namedWindow( ,CV__WINDOW_AUTOSIZE). Improve the Display Image Tutorial to educate the user for such implied rule. Put a note on documentation for Bug#3714 Revise the documentation regarding to imshow() function to better educate the user the implicit rule. (i.e. without creating the window before the imshow() function is the same as creating AUTOSIZE window)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
There is release non-retained variable in UIImageToMat.
The problem has fixed in 2.4(not 2.4.10). I found same ticket for 2.4.
Thank you.