diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/argaze/ArFeatures.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/argaze/ArFeatures.py b/src/argaze/ArFeatures.py index cab4532..4515ae1 100644 --- a/src/argaze/ArFeatures.py +++ b/src/argaze/ArFeatures.py @@ -1150,8 +1150,11 @@ class ArCamera(ArFrame): self.__projection_cache = projection_cache + # DEBUG + print("projection_cache", self.__projection_cache) + # The file doesn't exist yet: store projections into the cache - if not os.path.exists(os.path.join( DataFeatures.get_working_directory(), self.__projection_cache) ): + if not os.path.exists(self.__projection_cache): self.__projection_cache_writer = UtilsFeatures.FileWriter(path=self.__projection_cache) self.__projection_cache_reader = None |