Search Results
Search results 1-9 of 9.
This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.
-
How to use graph in the GUI_CreateDialogBox to produce an ECG-like curve, which is used in medical applications
LXW - - emWin related
PostI used GUI_DrawGraph() to achieve a similar effect. Does graph have an anti-aliasing function? For example GUI_DrawArc() and GUI_AA_DrawArc(), is there a GUI_AA_DrawGraph()? Graph is not smooth
-
How to use graph in the GUI_CreateDialogBox to produce an ECG-like curve, which is used in medical applications
LXW - - emWin related
PostHow to use graph in the GUI_CreateDialogBox to produce an ECG-like curve, which is used in medical applications
-
play AVI
LXW - - emWin related
PostI know how to play EMF files, but how to use Emwin to play AVI files?
-
I saved a 4bit 16th-order grayscale image, in which each pixel takes up 4bits of color.Actual display 16bit pixel color = saved 4bit 16-order grayscale data + 16-bit theme color.I want to send the coordinate area to the screen only once, and then send out every pixel color after blending until all pixel data is sent.
-
Due to THE MCU's RAM and ROM limitations, I wanted to use the pre-stored 4bit bitmap data to mix the 16-bit color and display as I mixed.The current method is to use GUI_DrawPixel() every time the color is mixed in the control's custom redraw function.One problem is that GUI_DrawPixel needs to send the set XY command to the screen every time, which is inefficient.Excuse me everybody has the method of what efficiency high point?