Pickling cv2.KeyPoint causes PicklingError
opencv, python
Solution
The problem is that you cannot dump cv2.KeyPoint to a pickle file. I had the same issue, and managed to work around it by essentially serializing and deserializing the keypoints myself before dumping them with Pickle.
So represent every keypoint and its descriptor with a tuple:
temp = (point.pt, point.size, point.angle, point.response, point.octave,
point.class_id, desc)
Append all these points to some list that you then dump with Pickle.
Then when you want to retrieve the data again, load all the data with Pickle:
temp_feature = cv2.KeyPoint(x=point[0][0],y=point[0][1],_size=point[1], _angle=point[2],
_response=point[3], _octave=point[4], _class_id=point[5])
temp_descriptor = point[6]
Create a cv2.KeyPoint from this data using the above code, and you can then use these points to construct a list of features.
I suspect there is a neater way to do this, but the above works fine (and fast) for me. You might have to play around with your data format a bit, as my features are stored in format-specific lists. I tried to present the above using my idea at its generic base. I hope that this may help you.
Problem
I want to search surfs in all images in a given directory and save their keypoints and descriptors for future use. I decided to use pickle as shown below: ``` #!/usr/bin/env python import os import pickle import cv2 class Frame: def __init__(self, filename): surf = cv2.SURF(500, 4, 2, True) self.filename = filename self.keypoints, self.descriptors = surf.detect(cv2.imread(filename, cv2.CV_LOAD_IMAGE_GRAYSCALE), None, False) if __name__ == '__main__': Fdb = open('db.dat', 'wb') base_path = "img/" frame_base = [] for filename in os.listdir(base_path): frame_base.append(Frame(base_path+filename)) print filename pickle.dump(frame_base,Fdb,-1) Fdb.close() ``` When I try to execute, I get a following error: ``` File "src/pickle_test.py", line 23, in <module> pickle.dump(frame_base,Fdb,-1) ... pickle.PicklingError: Can't pickle <type 'cv2.KeyPoint'>: it's not the same object as cv2.KeyPoint ``` Does anybody know, what does it mean and how to fix it? I am using Python 2.6 and Opencv 2.3.1 Thank you a lot