android - ARToolkit: Created new .pat file doesn't work -


i'm using artoolkit in android project. used this me create new marker , worked fine. file created called marker64.pat. however, standard pattern files artoolkit uses .patt files (with t). why did create .pat file me?

this .pat file doesn't seem work, crashes application starts.

this original line of code there (which works fine):

markerid = artoolkit.getinstance().addmarker("single;data/hiro.patt;80"); 

this changed version:

markerid = artoolkit.getinstance().addmarker("single;data/marker64.pat;80"); 

this marker image whilst i'm creating marker:

enter image description here

can please let me know why, firstly, file created .pat file , not .patt file. , secondly, why file doesn't work if it's correct.

thanks


Comments

Popular posts from this blog

How to understand 2 main() functions after using uftrace to profile the C++ program? -

c# - Update a combobox from a presenter (MVP) -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -