Welcome![Sign In][Sign Up]
Location:
Search - Window Width

Search list

[Other resourceWindow_Width_Level

Description: 本函数实现对16位位深医学灰度图像的窗宽窗位调节-this function to achieve 16-bit gray images medical deep window width and window-conditioning
Platform: | Size: 923 | Author: 大晴天空 | Hits:

[Speech/Voice recognition/combineEffectOfSpeech

Description: 本论文研究了窗宽和窗形状对语音信号能量的影响-thesis of the window width and shape of the window of voice signal energy impact
Platform: | Size: 35544 | Author: songwei | Hits:

[Otherdicomviewer2.0

Description: 本程序支持打开标准DICOM文件、JPEG文件、BMP文件、TIFF文件等各种图像文件,主要功能集中在DICOM文件中,提供DICOM窗宽窗位调节,提供MxN方式排列,可以将DICOM文件另存为BMP图像。-support of the open standards process DICOM paper documents JPEG, BMP documents, TIFF and other image files, mainly concentrated in the functional DICOM document, provide DICOM window width windows regulation, provide USING basis, and the order DICOM document can be saved as BMP images.
Platform: | Size: 668874 | Author: jayition | Hits:

[Otherdicomviewer2.0.3

Description: Dicom 文件浏览器 本程序支持打开标准DICOM文件、JPEG文件、BMP文件、TIFF文件等各种图像文件,加入了支持JPEG DICOM压缩文件的打开,主要功能集中在DICOM文件中,提供DICOM窗宽窗位调节,提供MxN方式排列,可以将DICOM文件另存为BMP图像。-Dicom File Browser supports opening the process DICOM standard documents, JPEG documents, BMP file, TIFF and other image files, joined the DICOM support JPEG compressed files opened, the main functions concentrated in DICOM document, provide DICOM window width windows regulation, provide USING basis, and the order DICOM document can be saved as BMP images.
Platform: | Size: 1339386 | Author: 张守鑫 | Hits:

[Video CaptureCGCapWin

Description: 演示直接采集图像到计算机屏幕(显存)。 采集图像显示的位置为指定Windows窗口。为使该窗口位置满足图像卡硬件的要求,在图像采集开始前,需要对图像的起始位置坐标、视频输入输出窗口的宽度/高度和显示范围加以调整。 -demonstration direct acquisition of a computer screen images (video memory). Acquisition images showed the locations of the designated Windows window. To meet the window hardware card images, at the request of image acquisition before the start of the need for the starting position image coordinates, Video input and output window width / height and display range to be adjusted.
Platform: | Size: 4726860 | Author: yinyu | Hits:

[Special Effectsezdicom_24

Description: 可查看医学DICOM文件。并可进窗宽、窗位调整,长度测量等。并可以位图方式进而转换输出。本软件ActiveX控件版权归原作者所有。 -access DICOM document. Progressive window width may, Window adjustment, length measurement. And can turn bitmap mode conversion output. The software ActiveX controls all the property of authorship.
Platform: | Size: 772475 | Author: magicart | Hits:

[Special EffectsDICOM_PLAYER

Description: 显示医学图象,鼠标拖拉实现对窗宽、窗位的调节-revealed the medical images to achieve the tedious mouse, window width of the window-regulation
Platform: | Size: 240440 | Author: zhuoyu | Hits:

[Special Effects11104326

Description: 实现DICOM文件的显示图象、病人的详细资料等,可以改变窗位、还有窗宽-achieve documents show DICOM images, a detailed information can be changed windows, and window width
Platform: | Size: 44725 | Author: 孙伟 | Hits:

[PropertySheet类似vcTAB分页类

Description: 该代码例子提供了类型VC界面中的信息提示窗宽的属性页格式-the code examples provided VC type of interface information suggested window width attributes page format
Platform: | Size: 6173 | Author: 张连成 | 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:

[PropertySheet类似vcTAB分页类

Description: 该代码例子提供了类型VC界面中的信息提示窗宽的属性页格式-the code examples provided VC type of interface information suggested window width attributes page format
Platform: | Size: 6144 | Author: 张连成 | Hits:

[hospital software systemWindow_Width_Level

Description: 本函数实现对16位位深医学灰度图像的窗宽窗位调节-this function to achieve 16-bit gray images medical deep window width and window-conditioning
Platform: | Size: 1024 | Author: | Hits:

[Speech/Voice recognition/combineEffectOfSpeech

Description: 本论文研究了窗宽和窗形状对语音信号能量的影响-thesis of the window width and shape of the window of voice signal energy impact
Platform: | Size: 34816 | Author: songwei | Hits:

[Otherdicomviewer2.0

Description: 本程序支持打开标准DICOM文件、JPEG文件、BMP文件、TIFF文件等各种图像文件,主要功能集中在DICOM文件中,提供DICOM窗宽窗位调节,提供MxN方式排列,可以将DICOM文件另存为BMP图像。-support of the open standards process DICOM paper documents JPEG, BMP documents, TIFF and other image files, mainly concentrated in the functional DICOM document, provide DICOM window width windows regulation, provide USING basis, and the order DICOM document can be saved as BMP images.
Platform: | Size: 668672 | Author: jayition | Hits:

[Video CaptureCGCapWin

Description: 演示直接采集图像到计算机屏幕(显存)。 采集图像显示的位置为指定Windows窗口。为使该窗口位置满足图像卡硬件的要求,在图像采集开始前,需要对图像的起始位置坐标、视频输入输出窗口的宽度/高度和显示范围加以调整。 -demonstration direct acquisition of a computer screen images (video memory). Acquisition images showed the locations of the designated Windows window. To meet the window hardware card images, at the request of image acquisition before the start of the need for the starting position image coordinates, Video input and output window width/height and display range to be adjusted.
Platform: | Size: 4726784 | Author: yinyu | Hits:

[Special Effectsezdicom_24

Description: 可查看医学DICOM文件。并可进窗宽、窗位调整,长度测量等。并可以位图方式进而转换输出。本软件ActiveX控件版权归原作者所有。 -access DICOM document. Progressive window width may, Window adjustment, length measurement. And can turn bitmap mode conversion output. The software ActiveX controls all the property of authorship.
Platform: | Size: 814080 | Author: magicart | Hits:

[Special EffectsDICOM_PLAYER

Description: 显示医学图象,鼠标拖拉实现对窗宽、窗位的调节-revealed the medical images to achieve the tedious mouse, window width of the window-regulation
Platform: | Size: 240640 | Author: zhuoyu | Hits:

[Special Effects11104326

Description: 实现DICOM文件的显示图象、病人的详细资料等,可以改变窗位、还有窗宽-achieve documents show DICOM images, a detailed information can be changed windows, and window width
Platform: | Size: 44032 | Author: 孙伟 | Hits:

[Graph programDicomView

Description: 一个简易的DICOM凸显个浏览器,基于DCMTK3.5.4实现,伪彩,调窗宽窗位等功能. -A simple DICOM highlights a browser, based on DCMTK3.5.4 realize, pseudo-color, digital transfer window width window functions.
Platform: | Size: 33792 | Author: 谢玉林 | Hits:

[matlabParzen-window-method

Description: 此为模式识别中Parzen窗法估计概率密度函数。 全部程序流程如下: 1、读取FAMALE.TXT文件把身高或体重给数组,并求x1的样本数N1和窗宽、体宽; 2、读取MALE.TXT文件把身高或体重给数组,并求x2的样本数N2和窗宽、体宽; 3、读取Test2.txt文件把对应的身高或体重给数组A并求A的样本数M; 4、利用Parzen窗法估计概率密度函数判别男女性别; 5、对本判别的错误率进行统计。 -This is the pattern recognition Parzen window method to estimate the probability density function . All program flow is as follows : 1 , read FAMALE.TXT file to height or weight to the array, and find the number of samples x1 N1 and window width , body width 2 , read MALE.TXT file to height or weight to the array, and find the number of samples x2 N2 and window width , body width 3 , read Test2.txt file to the corresponding height or weight requirements for the array A and A is the number of samples M 4 , the use of Parzen window method to estimate the probability density function of gender discrimination 5 , determine the error rate of the statistics .
Platform: | Size: 3072 | Author: 崔杉 | Hits:
« 12 3 4 5 6 7 8 9 10 »

CodeBus www.codebus.net