Home | History | Annotate | Download | only in imageproc

Lines Matching refs:box

71         addMaskedInputPort("box", ObjectFormat.fromClass(Quad.class, FrameFormat.TARGET_SIMPLE));
89 Frame boxFrame = pullInput("box");
91 // Get the box
92 Quad box = (Quad)boxFrame.getObjectValue();
93 box = box.scaled(2.0f).translated(-1.0f, -1.0f);
100 renderBox(box);
109 private void renderBox(Quad box) {
114 float[] vertexValues = { box.p0.x, box.p0.y,
115 box.p1.x, box.p1.y,
116 box.p3.x, box.p3.y,
117 box.p2.x, box.p2.y };