/* * Copyright (c) 1998 Vectaport Inc. * * Permission to use, copy, modify, distribute, and sell this software and * its documentation for any purpose is hereby granted without fee, provided * that the above copyright notice appear in all copies and that both that * copyright notice and this permission notice appear in supporting * documentation, and that the names of the copyright holders not be used in * advertising or publicity pertaining to distribution of the software * without specific, written prior permission. The copyright holders make * no representations about the suitability of this software for any purpose. * It is provided "as is" without express or implied warranty. * * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. * IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, * INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING * FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * */ // from the IUE #include #include #include #include #include #include #include #include #include #include #include #include /*-----------------------------------------------------------------------*/ IueConnCompFunc::IueConnCompFunc(ComTerp* comterp) : IueFunc(comterp) { } void IueConnCompFunc::execute() { ComValue img(stack_arg(0)); reset_stack(); IueImageComp* comp = image_comp(img); if (comp) { Image* src = comp->image(); if (src) { IUE_scalar_image_2d* inimage = new IUE_scalar_image_2d_of (new IUE_tjr_image_data_2d(src)); IUE_scalar_image_2d_of* outimage; AAI_connected_components(inimage, outimage); int ncols = outimage->x_size(); int nrows = outimage->y_size(); ImageTemplate it; it.SetSizeX(ncols); it.SetSizeY(nrows); it.SetFormat('U'); it.SetBitsPixel(4*8); MemoryImage* dst = new MemoryImage(&it); for (int row=0; rowgetrow(rowvals, row, 0, ncols); dst->PutSection((void*)rowvals,0,row,ncols,1); } IueImageComp* imagecomp = new IueImageComp(dst); ComValue retval(imagecomp->classid(), new ComponentView(imagecomp)); // retval.obj_type_ref() = IueImageComp::class_symid(); retval.object_compview(true); push_stack(retval); return; } } push_stack(ComValue::nullval()); }