mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
476 B
16 lines
476 B
import urllib |
|
import cv |
|
import Image |
|
import unittest |
|
|
|
class TestLoadImage(unittest.TestCase): |
|
def setUp(self): |
|
open("large.jpg", "w").write(urllib.urlopen("http://www.cs.ubc.ca/labs/lci/curious_george/img/ROS_bug_imgs/IMG_3560.jpg").read()) |
|
|
|
def test_load(self): |
|
pilim = Image.open("large.jpg") |
|
cvim = cv.LoadImage("large.jpg") |
|
self.assert_(len(pilim.tostring()) == len(cvim.tostring())) |
|
|
|
if __name__ == '__main__': |
|
unittest.main()
|
|
|