Category Archives: development

FLTK tech, HICON to Fl_RGB_Image

      Comments Off on FLTK tech, HICON to Fl_RGB_Image

This is a simple source code for converting Windows HICON to Fl_RGB_Image for my own customized FLTK window. Before understanding how it works, It must be requires understanding of some Windows API like LoadImage(). API, icon_to_flrgb() Fl_RGB_Image* icon_to_flrgb(HICON hIcon) { BITMAP bm; ICONINFO iconInfo; GetIconInfo(hIcon, &iconInfo); GetObject(iconInfo.hbmColor, sizeof(BITMAP),&bm); int width… Read more »

Applying HDR in medical image.

      Comments Off on Applying HDR in medical image.

Prologue High dynamic tone mapping is a kind of graphical thesis to indemnify exposure of whole a image specially such as 256 leveled Red, Green, Blue (+Alpha transparency) formats. But high dynamic calculates all pixel levels as an floating point number with luminance ( in case of RGB, it convert… Read more »

RAW scale process speed at Intel AVX instruction.

      Comments Off on RAW scale process speed at Intel AVX instruction.

Testbase My medical RAW image scale processor benchmarked for Intel AVX instruction set. It was fully reprogrammed for be affected by optimization algorithm by compiler option. Specification of benchmark CPU: Intel Core i7-6700 @ 4GHz (Skylake-S) Memory: DDR4-1066 16GB (Single channel) OS: Windows 7 professional 64bit Compiler MinGW-W64 64bit version… Read more »

Anystreaming now support 1080i.

      Comments Off on Anystreaming now support 1080i.

My latest HDMI and control driver enabled to handle 1080i (interlaced scan) for some devices not possible to bandwidth of 1080p. Latest windows client ( you can download here )  supports this with latest firmware system version 2016.06.09 or later. Actually I don’t recommend to use 1080i, but it’s up… Read more »

Anystreaming H/W almost at the end.

      Comments Off on Anystreaming H/W almost at the end.

Maybe it was a long time to find way out from maze. My final – as I thought – works may reached to end of the long road. Ugly WiFi module removed and strange HID chipset made it works well by facing to same strange initializing rule. There’s nothing to… Read more »

Anystreaming got 60fps but not for 1080p.

      Comments Off on Anystreaming got 60fps but not for 1080p.

Anystreaming stream input video driver modified to support all 60Hz, actually means 60fps. But I blocked in CPU performance for 60fps in 1080p. So I made limit to 30fps in 1080p for performance. I don’t like to blame a man who has decision, but don’t like his crabbed, obscured decisions…… Read more »

Anystreaming Remote controller in development …

      Comments Off on Anystreaming Remote controller in development …

Anystreaming remote controller is in developing and it will be run with as-win32 client program. Source code may not be open because it only used FLTK 1.3.3-ts (It already open in my GitHub) I will upload to as-win32 client download section in Bitbucket ASAP, and hope every Anystreaming user own… Read more »

openXcom save editor C++ source code.

      Comments Off on openXcom save editor C++ source code.

  openXcom is a great windows application developed for everyone as an open source. Anybody can enjoy long time ago original Xcom:UFO defense in any version of Windows, specially my Windows10 with Pentium 957 really works well in low energy cost, lovely game. But if you have any experience in… Read more »

Revive suddendeath boards.

      Comments Off on Revive suddendeath boards.

At last day, I found reason why some AS boards going dying HID device controller. It was a reason of HID control chipset had narrow clock sensitive. I was try to adjust fastest working clock and it may not right clock for it. (Actually chipset provider does not support us)… Read more »