cvki
cvki
你好, 我的yaml文件的配置中:text_prompt: > chair. table. wall. floor. ceiling. cabinet. plant. flower. flowerpot. box. picture poster. desk. 然后会产生‘plant flower’标签,如何避免这种标签合并的情况呢
我使用的是Gemini336L,win10系统。然后想自定义RGB和深度图的尺寸,并对深度图进行自定义后处理。现在有三个问题:1. 我在设置了深度尺寸后,得到的数据分辨率不符合预定义。2. 我未在example中找到后处理的API,仅在post_processing中找到后处理的显示内容。3.我在使用Viewer.exe设置相机后,无法保存设置的参数(或者能让我在代码里配置参数吗)。代码如下: # 两个分辨率都是 (w1280,h800),我debug过,参数没问题。 `def start_ppl(edict_args): pipeline = Pipeline() config = Config() try: profile_list = pipeline.get_stream_profile_list(OBSensorType.COLOR_SENSOR) color_profile = profile_list.get_video_stream_profile(edict_args.width, edict_args.height, OBFormat.RGB, edict_args.fps) # 此处RGB设置的分辨率在后续color_image的shape是对的 config.enable_stream(color_profile) profile_list = pipeline.get_stream_profile_list(OBSensorType.DEPTH_SENSOR)...