We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
VISUALIZE画面でのImagePlotで表示するデータの改修。
/image/{filepath:path}?start_index={start_index}&end_index={end_index}
OPTINIST_DIR/input/{workspace_id}/{image_file_basename}/{image_file_basename}_{start_index}_{end_index}.json
上記の操作をした際に、 Inputで使用しているtiffファイルの場合は期待通りに動作している。
outputで生成されたデータの場合、end_indexを100などにしても、10までしかデータが取得できない。 3次元のoutputの画像の場合、inputのデータ同様にindex指定で再生できるようにしたい。
主な原因は、以下の2箇所
3次元の配列の場合、ImageDataのsave_jsonの処理の際にindex [:10]のデータしかjsonに保存していない
barebone-studio/studio/app/common/dataclass/image.py
Line 59 in 86a47c6
barebone-studio/studio/app/common/dataclass/utils.py
Lines 6 to 12 in 86a47c6
image_fileの拡張子がjsonの場合は、start_index, end_indexの設定が反映されていない。
barebone-studio/studio/app/common/routers/outputs.py
Lines 124 to 138 in 86a47c6
以下のような対応が予測されるが、betterな実装方法があればそちらを採用。
ImageData
The text was updated successfully, but these errors were encountered:
Merge pull request #243 from arayabrain/feature/image-index
e8ed81a
[#242] outputの動画のrange指定機能修正
ReiHashimoto
Successfully merging a pull request may close this issue.
VISUALIZE画面でのImagePlotで表示するデータの改修。
/image/{filepath:path}?start_index={start_index}&end_index={end_index}
のAPI callOPTINIST_DIR/input/{workspace_id}/{image_file_basename}/{image_file_basename}_{start_index}_{end_index}.json
が生成され、レスポンスとして返される上記の操作をした際に、
Inputで使用しているtiffファイルの場合は期待通りに動作している。
outputで生成されたデータの場合、end_indexを100などにしても、10までしかデータが取得できない。
3次元のoutputの画像の場合、inputのデータ同様にindex指定で再生できるようにしたい。
主な原因は、以下の2箇所
3次元の配列の場合、ImageDataのsave_jsonの処理の際にindex [:10]のデータしかjsonに保存していない
barebone-studio/studio/app/common/dataclass/image.py
Line 59 in 86a47c6
barebone-studio/studio/app/common/dataclass/utils.py
Lines 6 to 12 in 86a47c6
image_fileの拡張子がjsonの場合は、start_index, end_indexの設定が反映されていない。
barebone-studio/studio/app/common/routers/outputs.py
Lines 124 to 138 in 86a47c6
対応方針(案)
以下のような対応が予測されるが、betterな実装方法があればそちらを採用。
ImageData
において、3次元データの場合はThe text was updated successfully, but these errors were encountered: