I want to change the following two commands which are written in opencv 2.3 .
fea_det=cv2.FeatureDetector_create("SIFT")
des_ext=cv2.DescriptorExtractor_create("SIFT")
In opencv 3, I know that there is a command which create SIFT, so
fea_det=cv2.xfeatures2d.SIFT_create()
But what should I use for des_ext ? I am asking that what is the equivalent code of "cv2.DescriptorExtractor_create("SIFT")" in opencv 3?