Contours := get_shape_model_contours(ShapeModelID, Row, Column) *显示图像和轮廓 dev_set_draw('margin') dev_display(Image) disp_contours(Contours, 'red', 'filled') ``` 在这个示例中,首先通过`create_shape_model`创建了一个形状模型,然后使用`find_shape_model`在图像中找到了匹配的对象,并获取...
The operatorget_shape_model_contoursreturns a representation of the shape modelModelIDas XLD contours inModelContours. The parameterLeveldetermines for which pyramid level of the model the contour representation should be returned. The contours can be used, for example, to visualize the found instance...
对于get方法,hibernate会确认一下该id对应的数据是否存在,首先在session缓存中查找,然后在二级缓存中查找,还没有就查数据库,数据库中没有就返回null。 对于第2点,虽然好多书中都这么说:“get()永远只返回实体类”,但实际上这是不正确的,get方法如果在session缓存中找到了该id对应的对象,如果刚好该对象前面是被代...