Unexpected behavior when analyzing images in parallel #701
-
I was trying to analyzing a bunch of images in parallel. And things went on well until I add one line of code in my pipeline. That code is used to add observation to output class.
If I delete the added code, the result can be generated properly. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
It turned out that the data type of the added observation is not compatible with JSON, so that plantcv.parallel.process_results didn't work. A pull request will be created later to check datatype when adding observation to avoid adding incompatible data. |
Beta Was this translation helpful? Give feedback.
It turned out that the data type of the added observation is not compatible with JSON, so that plantcv.parallel.process_results didn't work. A pull request will be created later to check datatype when adding observation to avoid adding incompatible data.