UNPKG

our-medical

Version:

medical image vue component

15 lines (14 loc) 462 B
import { type Types } from '@cornerstonejs/core'; /** * @description 根据头框X(R-L)和Y(A-P)方向的尺寸创建一组头框提取点坐标,头框尺寸默认190x116,单位mm * @author jiannan.jiao * @date 01/04/2024 * @export * @param {string} seriesId * @param {*} [size={ x: 190, y: 116 }] * @returns {*} */ export default function createDefaultFrame(seriesId: string, size?: { x: number; y: number; }): Types.Point3[][] | undefined;