Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by NiceGhost

  1. NiceGhost

    beginner book for image processing

    I've read "Digital image processing" by Gonzalez , it's good for beginer.
  2. NiceGhost

    Need info about face recognition project in DIP

    Re: Help about DIP. Use DIP by Gonzale (has upload in edaboard). There's a charpter about recornization.
  3. NiceGhost

    Watermarking algorithm for MATLAB

    Re: watermarking I dont know how to WM in matlab , but in C++, it's so easy for simple requirement. Do this: for(all pixel of image 1) for(all pixel of image 2) { result.r=pixel1.r*.5 +pixel2.r*.5 ;// Change .5 to percent you need result.r=pixel1.g*.5 +pixel2.g*.5 ...
  4. NiceGhost

    Any tools available for reading raw PCM data?

    Dont need to use any tool, man. Just try API func PlaySound() for it. If you need more manual about playing Wave , try MSDN about Open and Write to wave device. it's not too dificult.(I use VC6.0)
  5. NiceGhost

    What does return X() mean in this C++ program, as X is not an object?

    Re: For C++ expert I dont completly understand your question. f5() func simply return X object with default construction and the func Modify() was never called. I think that's all.
  6. NiceGhost

    graphics in visual c++ 6

    If you just need a 2D graphic processing. GDI is helpfull to you. LoadImage() func wil help you load an Bitmap or Icon in to your memory, then you can process or show it on to the screen.

Part and Inventory Search

Back
Top