Ask Your Question

david476's profile - activity

2017-03-13 00:53:24 -0600 commented question Saving and loading aruco dictionaries to/from a file in python/java.

I just built opencv 3.2 for Java and there doesn't seem to be a way to initialize one either. The only constructor takes a nativeObj and there aren't any native methods to create one either.

2017-03-12 14:17:52 -0600 received badge  Editor (source)
2017-03-12 14:17:02 -0600 commented question Saving and loading aruco dictionaries to/from a file in python/java.

That's certainly the standard way to do it, but I need a dictionary with a very large number of markers and therefore definitely don't want to generate it (they don't seem to be random so this could have worked) each time. The module FAQ references saving dictionaries multiple times, including that you need to split the Dictionary into its component variables (CTRL+F save):

http://docs.opencv.org/trunk/d1/dcb/tutorial_aruco_faq.html (http://docs.opencv.org/trunk/d1/dcb/t...)

2017-03-12 03:11:49 -0600 asked a question Saving and loading aruco dictionaries to/from a file in python/java.

How are you supposed to do that? I can't find a way to save the object directly or initialize a new one from it's separated and saved values (again, in python at least). Ideas?