Welcome![Sign In][Sign Up]
Location:
Search - foreground

Search list

[Special Effectsbg_subtraction_cmd

Description: 本代码是Foreground-Background Segmentation of Video Sequences的配套程序,利用KDE算法对avi进行处理,从而提取前景和背景,在windows, Visual C++下测试成功
Platform: | Size: 53137 | Author: 辜嘉 | Hits:

[Special Effectsadaptivethresholdandtestprogram

Description: 一个自适应阈值处理程序,是图像分割领域难题的一个处理方向,该方法效果还不错An adaptive thresholding algorithm that seperates the background with nonuniform illumination. %foreground from the background with nonuniform illumination.
Platform: | Size: 147794 | Author: yemaoqiu | Hits:

[Other resourceadaptive_background_substraction

Description: for the TI dm6446 platformBackground subtraction moduleMaintain a background model, which can distinguish background, foreground and theft/left pixelsShadow removal moduleDetect shadow regions in monochrome videosCamera shift detection and suppression moduleDetect of small camera shift, and suppress the false alarms due to themBlob extraction moduleExtract connected foreground and theft/left pixels as blobsTheft/left baggage distinguish moduleDistinguish theft blobs and left baggage blobs
Platform: | Size: 20244 | Author: heavyseatree | Hits:

[Special EffectsGrabCutSource

Description: 最经典之做,保证别人没有上传过 实现文章 “GrabCut\" Interactive Foreground Extraction using Iterated Graph Cuts 用graphcut实现图像分割,效果非常好
Platform: | Size: 1389862 | Author: changfeng | Hits:

[OS programTaskSwitchers

Description: The TaskSwitcher application will list all executable programs in it when it starts. When user double-clicks the exactable program in the list control, the selected executable program will show the foreground of the screen. Meanwhile, the main window will become the top-most, small window in the device. When user clicks the small window, the application restores the main window and refreshes the executable program in the system.
Platform: | Size: 29423 | Author: fenis | Hits:

[Other resourcecvuse

Description: 使用opencv,将一个视频文件分割成多张图片。 特点:按帧提取,每帧保存为多张图片。 保存时,原来的格式是全彩的,同时转化并保存全彩图片对应的黑白图片和二值化图片。这三类图片分别存放在默认目录的video background foreground中。默认的视频文件名为默认目录下的ci.avi
Platform: | Size: 4880281 | Author: kingbirdji | Hits:

[Special Effectsregionbased_seg_demo

Description: This code implements the well-known Chan-Vese segmentation algorithm from the paper \"Active Contours Without Edges.\" This technique deforms an initial curve so that it separates foreground from background based on the means of the two regions. The technique is very robust to initialization and gives very nice results when there is a difference between the foreground and background means. This code uses active contours and level sets in the implementation. It could also serve as a good framework for implementing all kinds of region-based active contour energies. 1.) Download 2.) Unzip 3.) Run >>region_seg_demo See this site for experiments, videos, and more information on segmentation, active contours, and level sets: [ http://www.shawnlankton.com/2007/05/active-contours/ ]
Platform: | Size: 11057 | Author: hiyisf | Hits:

[Dialog_WindowCreditsScroller

Description: 这个类实现字幕滚动效果,附带子程序。可以改变背景色、前景色,字体,设置滚动快慢等。这是一个不可多得的类。-subtitles rolling effect, fringe subroutine. Can change the background color, foreground color, fonts, set up a rolling speed. This is a rare category.
Platform: | Size: 24608 | Author: 冯俊波 | Hits:

[WinSock-NDISHTMLArea3.0

Description: 一个很好用的JS控件,所见即所得,可以直接用在网页中,将后台所编辑的东西,一模一样的在前台显示出来-a good use of JS control, WYSIWYG, can be directly used on the website, as background to edit things, the same as shown in the foreground
Platform: | Size: 192689 | Author: 赵子龙 | Hits:

[GUI Developabcde34

Description: DBGrid是顯示資料的主要手段之一。但是DBGrid缺省的外觀未免顯得單調和缺乏創意。通過code,我們可以改變 DBGrid 的表頭、網格、格線的前景色和背景色,以及相關的字體的大小和風格(就像網頁中的表格一樣漂亮美觀)-DBGrid show information is one of the main instruments. But DBGrid default appearance appears to be dull and lack of creativity. Through code, we can change DBGrid the table, grid, the grid foreground color and background color, and the relevant font size and style (like website as a form beautiful appearance)
Platform: | Size: 371649 | Author: zrs | Hits:

[GUI Developbrew window manager

Description:

 

Objective
This topic describes how to create a windowed application that will share the display with other applications.
Brew® MP windowed applications need to be written differently than traditional Brew MP applications. Traditional Brew MP applications, when running in the foreground, occupy full screen space and can modify the display at any time. In the windowing framework, multiple applications share the display at the same time and are not allowed to modify the display arbitrarily. A windowed application also needs to create one or more widgets to be used to create the windows.
A windowed application needs to:
·                  Create and initialize one or more widgets to be passed to IWindowMgr_CreateWindow().
The application can implement its own IWidget, or it can make use of an existing IWidget.
·                  Handle the EVT_APP_START_WINDOW event (and create a window).
·                  Implement handlers for visibility changes, focus changes, and extent changes. The implementation of these handlers is dependent on the details of the application.
·                  Draw in two stages:
·                                  Tell the container that drawing is necessary (ICONTAINER_Invalidate()).
·                                  Draw only when told to draw by the container (IWIDGET_Draw()).
Note: A windowed application should not call any functions that modify IDisplay directly. This includes explicit IDisplay function calls or implicit updates, such as calls to IIMAGE_Draw() or ICONTROL_Redraw(). Drawing should happen only on demand, for example, when IWIDGET_Draw() is called for the widget used to create the window. Existing Widget based applications follow these guidelines and, with minor modifications, can be ported to the windowing framework.
Event handling
A windowed application must respond to these events:
EVT_APP_START_WINDOW and EVT_APP_START
A window-based application receives EVT_APP_START_WINDOW first. If the application returns TRUE for this event, the application does not receive EVT_APP_START. If an application needs to support both the environments (window based and non-window based), it should handle both events.
When the application receives EVT_APP_START_WINDOW, it should create one or more windows.
If creation of IWindowMgr0 fails while handling EVT_APP_START_WINDOW, the application should assume that the platform does not support window-based applications. In this case, the application should return FALSE and continue the application logic in the code for EVT_APP_START.
EVT_APP_SUSPEND and EVT_APP_RESUME
After an application returns TRUE for EVT_APP_START_WINDOW, it will not receive EVT_APP_SUSPEND and EVT_APP_RESUME as non-windowed Brew MP applications do. Instead, the application must check for window status events that are sent to the widget through EVT_WDG_SETPROPERTY events. For EVT_WDG_SETPROPERTY events, wParam indicates which property was set, and dwParam specifies the value of the property. When the AEEWindowMgrExt_PROPEX_STATE property has a value of AEEWindowMgrExt_STATE_VISIBLE, the window is visible.
EVT_WDG_WINDOWSTATUS
The EVT_WDG_WINDOWSTATUS event is sent to a widget to notify it about various window related status messages. AEEWindowStatus.h contains information on the meaning of various status messages.
Sample code location

ZIP filename
Location
Run app
hellowindowapp
Brew MP Library
·                       Download and extract the ZIP file.
·                       Compile the app.
·                       Run it on the Brew MP Simulator.

Example of a windowed application
In the hellowindowapp sample, HelloWindowApp_HandleEvent handles the EVT_APP_START_WINDOW event and creates soft key and pop-up windows:
   case EVT_APP_START_WINDOW:   
      DBGPRINTF("EVT_APP_START_WINDOW");
 
      // Create the softkey and popup windows
      HelloWindowApp_CreateSoftkey(pMe);
      HelloWindowApp_CreateOrActivatePopup(pMe);
 
      // Handling this event tells Brew that we are a windowing
      // application.
      return TRUE;  
HelloWindowApp_CreateSoftkey() creates the soft key widget, sets the color text of the widget, then calls HelloWindowApp_CreateWindow() to create the window.
   WidgetWindow *pWindow = &pMe->softkeyWindow;
  
   if (pWindow->piWindowWidget != NULL) return;
   pWindow->pszDbgName = "Softkey";
   pWindow->pMe = pMe;
  
   (void) ISHELL_CreateInstance(pMe->applet.m_pIShell, AEECLSID_SoftkeyWidget,
            (void **) &pWindow->piWindowWidget);
   if (pWindow->piWindowWidget == NULL) return;
 
   {
      WidgetExtent extent = {0, HWA_SOFTKEY_HEIGHT};
      IWidget_SetExtent(pWindow->piWindowWidget, &extent);
   }
  
   (void) IWidget_SetBGColor(pWindow->piWindowWidget, MAKE_RGBA(200,200,200,255));
  
   // Now set the softkeys text
   {
      IWidget *piTextWidget = NULL;
      (void) IWidget_GetSoftkey(pWindow->piWindowWidget, PROP_SOFTKEY1, &piTextWidget);
     
      if (piTextWidget != NULL) {
         (void) IWidget_SetText(piTextWidget, L"Hover", TRUE);
      }
      RELEASEIF(piTextWidget);
 
      (void) IWidget_GetSoftkey(pWindow->piWindowWidget, PROP_SOFTKEY2, &piTextWidget);
      if (piTextWidget != NULL) {
         (void) IWidget_SetText(piTextWidget, L"Close", TRUE);
      }
      RELEASEIF(piTextWidget);
   }
 
   HelloWindowApp_CreateWindow(pMe, pWindow, AEEWindowMgrExt_CLASS_Softkey);  
HelloWindowApp_CreateWindow() creates the soft key window, as follows:
   int result;
   uint32 winId;
   AEEWindowProp propList[1];
  
   // Set custom window handler
   HANDLERDESC_Init(&pWindow->hdHandler, HelloWindowApp_WindowHandler, pWindow, NULL);
   IWIDGET_SetHandler(pWindow->piWindowWidget, &pWindow->hdHandler);
        
   propList[0].id = AEEWindowMgrExtProp_CLASS;
   propList[0].pbyLen = sizeof(winClass);
   propList[0].pby = (void *) &winClass;
     
   result = IWindowMgr_CreateWindow(pMe->piWindowMgr, (IQI*) (void *) pWindow->piWindowWidget,
      propList, ARR_SIZE(propList), &winId);
 
   if (result != SUCCESS) {
      DBGPRINTF("Window creation failed for %s: %d", pWindow->pszDbgName, result);
      HelloWindowApp_DestroyWindow(pWindow);
   } else {
      DBGPRINTF("Window %s created: id=%d", pWindow->pszDbgName, winId);
   }
HelloWindowApp_CreateOrActivatePopup() creates the widget for the pop-up window, then calls HelloWindowApp_CreateWindow() to create the pop-up window.
   pWindow->piWindowWidget = HelloWindowApp_CreateAndInitImageWidget(
                                pMe,
                                "popups.main" // Image as defined in appinfo.ini
                             );
 
   if (pWindow->piWindowWidget == NULL) return;
 
   {
      WExtent extent = {HWA_POPUP_WIDTH, HWA_POPUP_HEIGHT};
      IWIDGET_SetExtent(pWindow->piWindowWidget, &extent);
   }
 
   HelloWindowApp_CreateWindow(pMe, pWindow, AEEWindowMgrExt_CLASS_Popup);
Related information
·                  See Brew MP Widgets Technology Guide: Creating a Widgets application
·                  See Brew MP API Reference

Base version:
Brew MP 1.0
Tested version:
Brew MP 1.0
Phone tested:
No

 

Platform: | Size: 439828 | Author: bluecrest | Hits:

[Program doc头部定位

Description: Segmentingindividualhumansinahigh-densityscene(e.g.,acrowd)acquiredfromastaticcameraischallengingmainly duetoobjectinter-occlusion(Fig.1).We dene this proble mas a“model-asedsegmentation”problemandthesolutionisob- tainedusingaMarkovchainMonteCarlo(MCMC)approach. Knowledgeofvariousaspectsincludinghumanshape,human height,cameramodel,andimagecuesincludinghumanhead candidates,foreground/backgroundseparationareintegrated inaBayesianframework.Weshowpromisingresultsonsome challengingdata.
Platform: | Size: 651607 | Author: leremy163@163.com | Hits:

[Photo softwareAdaptive learning of multi-subspace for foreground detection.pdf

Description: 本文是2011年eslvier上的关于自适应局部背景特征建模的一篇论文。本文介绍了关于局部PCA学习背景变化的光照,能对背景的全局或局部的变化作出最快速的响应
Platform: | Size: 5512447 | Author: tinquan | Hits:

[GDI-Bitmap区域生长图分割

Description: This algorithm is presented as an alternative to graph-cuts. The operation is very simple, and can be thought of with a biological metaphor: Imagine each image pixel is a “cell” of a certain type. These cells can be foreground, background, undefined, or others. As the algorithm proceeds, these cells compete to dominate the image domain. The ability of the cells to spread is related to the image pixel intensity.
Platform: | Size: 2230 | Author: lsx1980 | Hits:

[Otherback

Description: DOS可以不是黑白的,这是在DOS下设置背景和前景色的小程序。--DOS may not be in black-white mode, here is a small program which can set foreground and background color in DOS.
Platform: | Size: 9216 | Author: 站长 | Hits:

[Static controlXColorStatic-CStatic派生类,支持改变字体,字体和背

Description: XColorStatic-CStatic派生类,支持改变字体,字体和背景色等-XColorStatic-CStatic derived class, supports the change typeface, the typeface and the back scenery and so on
Platform: | Size: 36864 | Author: 熊友根 | Hits:

[DocumentsfgClassification_cvpr2012

Description: 图像前景分割 运用了新的算法和投票机制 该算法目前是最好的-Image foreground segmentation and the use of the new algorithm and the voting mechanism of the algorithm is best
Platform: | Size: 1600512 | Author: 刘晓寒 | Hits:

[Dialog_WindowCreditsScroller

Description: 这个类实现字幕滚动效果,附带子程序。可以改变背景色、前景色,字体,设置滚动快慢等。这是一个不可多得的类。-subtitles rolling effect, fringe subroutine. Can change the background color, foreground color, fonts, set up a rolling speed. This is a rare category.
Platform: | Size: 24576 | Author: 冯俊波 | Hits:

[Internet-NetworkHTMLArea3.0

Description: 一个很好用的JS控件,所见即所得,可以直接用在网页中,将后台所编辑的东西,一模一样的在前台显示出来-a good use of JS control, WYSIWYG, can be directly used on the website, as background to edit things, the same as shown in the foreground
Platform: | Size: 192512 | Author: 赵子龙 | Hits:

[GUI Developabcde34

Description: DBGrid是顯示資料的主要手段之一。但是DBGrid缺省的外觀未免顯得單調和缺乏創意。通過code,我們可以改變 DBGrid 的表頭、網格、格線的前景色和背景色,以及相關的字體的大小和風格(就像網頁中的表格一樣漂亮美觀)-DBGrid show information is one of the main instruments. But DBGrid default appearance appears to be dull and lack of creativity. Through code, we can change DBGrid the table, grid, the grid foreground color and background color, and the relevant font size and style (like website as a form beautiful appearance)
Platform: | Size: 371712 | Author: zrs | Hits:
« 1 2 3 45 6 7 8 9 10 ... 50 »

CodeBus www.codebus.net