1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 15:23:05 +04:00

Merge pull request #24415 from thewoz:imread

Add imread #24415

### Pull Request Readiness Checklist

See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request

- [X] I agree to contribute to the project under Apache 2 License.
- [X] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV
- [X] The PR is proposed to the proper branch
- [ ] There is a reference to the original bug report and related work
- [ ] There is accuracy test, performance test and test data in opencv_extra repository, if applicable
      Patch to opencv_extra has the same branch name.
- [x] The feature is well documented and sample code can be built with the project CMake

Hello everyone,
I created this new version of the imread function and I think it can be very useful in several cases.
It is actually passed to it object on which you want to upload the image.
The advantages can be different like in case one needs to open several large images all the same in sequence.
one can use the same pointer and the system would not allocate memory each time.
This commit is contained in:
thewoz
2024-03-29 08:51:19 +01:00
committed by GitHub
parent 7b9de94003
commit afb91b552e
5 changed files with 72 additions and 2 deletions
+27
View File
@@ -0,0 +1,27 @@
#!/usr/bin/env python
'''
Test for imread
'''
# Python 2/3 compatibility
from __future__ import print_function
import cv2 as cv
import numpy as np
import sys
from tests_common import NewOpenCVTests
class imread_test(NewOpenCVTests):
def test_imread_to_buffer(self):
path = self.extraTestDataPath + '/cv/shared/lena.png'
ref = cv.imread(path)
img = np.zeros_like(ref)
cv.imread(path, img)
self.assertEqual(cv.norm(ref, img, cv.NORM_INF), 0.0)
if __name__ == '__main__':
NewOpenCVTests.bootstrap()