Face detection and tracking on FPGA

Поділитися
Вставка
  • Опубліковано 5 лют 2025
  • Face detection and tracking has been an important and active research field because it
    offers many applications, especially in video surveillance, biometrics, or video coding. The goal of this project was to implement a real-time system on an FPGA board to detect and track a human's face. The face detection algorithm involved color-based skin segmentation and image filtering. The face location was determined by calculating the centroid of the detected region. A software version of the algorithm was independently implemented and tested on still pictures in MATLAB. Although the transition from MATLAB to Verilog was not as smooth as expected, experimental results proved the accuracy and effectiveness of the real-time system, even under varying conditions of lights, facial poses and skin colors. All calculation of the hardware implementation was done in real time with minimal computational effort, thus suitable for power-limited applications.
    people.ece.corn...

КОМЕНТАРІ • 176

  • @aminemlsm8176
    @aminemlsm8176 6 років тому +5

    Thank you for your amazing work! I appreciate that you shared this video and especially the documentation. Thanks again and good luck for the future.

  • @companymen42
    @companymen42 7 років тому +7

    That is lit. Nice job to that student!

  • @lawrencealan
    @lawrencealan 12 років тому

    Cool stuff. I've done a lot of multiple face detection, human tracking from single POV. Finding the right combination of pixel manipulations can be difficult especially without fixed lighting in the environment. It's nice to see this in hardware.

  • @svampebob007
    @svampebob007 11 років тому +1

    You could use the skin detection method to detect probably objects and then calculate the size of the object detected.
    Since humans generally have the same head size and shape and that we know the facial proportions of the human face, you should be able to calculate the locations to where you should look for the eyes and mouth for any given head at any given distance.
    With the filter used here you could see a pattern that was very similar a round/oval shape for both heads wit some shadows.

  • @wallerron
    @wallerron 10 років тому

    I'm awestruck. The immensity of it!

  • @pacrat90
    @pacrat90 10 років тому +10

    Amazing Work.

  • @ChiragHadiyaCreations
    @ChiragHadiyaCreations 2 роки тому

    WATCHING IT AFTER 10 YEARS ALMOST FROM INDIA ECE STUDENT
    ......

  • @zaidalsadane9638
    @zaidalsadane9638 4 роки тому

    thank you so much for sharing documents of your work.you deserve the best.good job

  • @borcudo
    @borcudo 12 років тому

    Very nice project!
    I was wondering why not use some basic characteristics of a human face like the distance between the eyes to determine whether there is a face in the image or not?
    I would assume that finding two yes would be a simple algorithm to implement.

  • @fangl.8278
    @fangl.8278 8 років тому

    Thanks for sharing, very interesting! I will use a newer SoC board to reproduce the function mentioned in the report, also adding some machine learning techniques to based on the original design.

  • @MilanKarakas
    @MilanKarakas 5 років тому +1

    Thank you for the Verilog code. I am used to learn VHDL, but will force myself to learn Verilog HDL too. Great video. Just this board is too expensive for my taste.

    • @ece4760
      @ece4760  5 років тому +1

      One way or another, if you wan to do this project, you will need peripherials attached to the fpga. That is not cheap

    • @MilanKarakas
      @MilanKarakas 5 років тому

      @@ece4760 You are right. But my problem is which board to chose?! So far, I am working on cheap FPGA (Cyclone II), just board, 50 MHz oscillator and flash memory). For ADC, DAC and other thing, I have plan to use STM32 MCU, at least for audio part. For VGA, it may be problem, but maybe not - soldering some "R/2R resistor ladder" and everything for first video work. For webcam input, that might be the problem, but I will solve that somehow. Thanks anyway.

    • @ece4760
      @ece4760  5 років тому

      @@MilanKarakas I wrote this a few years ago
      hackaday.io/project/5033-de0-nano-fpga-to-vga-output

    • @ece4760
      @ece4760  5 років тому +1

      Webcam input is quite difficult. The USB protocol is very complex. It is better to use a serial output camera.

    • @MilanKarakas
      @MilanKarakas 5 років тому

      @@ece4760 Well, yes. I noticed that when study USB on STM32. Just not familiar with whole concept. Serial output camera? Is that like IP camera or what?

  • @fjs1111
    @fjs1111 Рік тому

    Bruce, that is very impressive for a project. What university was this?

    • @ece4760
      @ece4760  Рік тому

      cornell university, masters project

  • @laurentbourassa1168
    @laurentbourassa1168 6 років тому

    Interesting project. Great job!

  • @thienlo
    @thienlo 8 років тому

    Thanks for the sharing video and open source file. I will give you credit for my project.

  • @edwingdelgado
    @edwingdelgado 8 років тому

    Yes, very nice and thank you for the effort for a small but very important breakthrough...... Thanks.... I understand your effort. And the end applications are inconmeasurable....

  • @keshavpanipat
    @keshavpanipat 7 років тому

    Sir in your report there are two code present one for matlab and one for verilog. Please tell what is the working of verilog code which is given in your report.
    I am confused for verilog code. Please tell me what function is performed by verilog code.

  • @ImekxD
    @ImekxD 8 років тому +2

    Can i ask where do your students get sdram controller? I have de0 nano with 32 MB SDRAM and i was wondering how to achieve frame buffer for 640x480 camera resolution - i found two ways to be most appropriate for me - one using sdram controller from hamsterworks (quite popular vdhl sdram controller for de0 nano and sdram chip on it) and other method was to use Qsys (i prefer to have VHDL/verilog controller to instantiate it in my project without Qsys) - ive opened DE2_TV file from link in the description and found that You are using some kind of template from altera (still there are no files for sdram controller if im right, only sdram framebuffer instantiation Sdram_Control_4Port u6)

    • @ece4760
      @ece4760  8 років тому +2

      You are right. Thye students got it from the TV example. But now we use the University program SDRAM controller for Qsys on DE1-SoC

  • @vicktorioalhakim3666
    @vicktorioalhakim3666 9 років тому

    Hi!
    Would be nice if you can provide in your report the amount of resources used (LE's, DSP's, memory, etc...).
    A power estimation report would also be nice, for each of the synthesized cores.
    Apart from that great work! Have you considered using other methods for the detection? And from what I can see, you're just detecting, not really tracking. Did you try some tracking methods using filters like particle filters, EKF's, UKFs.. etc?
    I checked your report, and I couldn't find the answer to the above questions.
    Again, great work and good luck with full completion of your master thesis.

    • @vicktorioalhakim3666
      @vicktorioalhakim3666 9 років тому

      ***** Also, what camera sensor did you use? Was it the OV7670 by any chance?

    • @ece4760
      @ece4760  9 років тому

      ***** NTSC analog TV camera

  • @mohamednadour6707
    @mohamednadour6707 9 років тому +1

    First i want to thank you for sharing everything ..
    would it be possible to use the transition from MATLAB to VHDL instead of Vrilog ?

    • @ece4760
      @ece4760  9 років тому +1

      +Mohamed Na VHDL should work. But the conversion to Verilog was done manually, so you would have to convert it.

  • @Jarrod_C
    @Jarrod_C 5 років тому

    I did not understand the centroid concept. Can someone please clarify?

    • @ece4760
      @ece4760  5 років тому

      Average position of all the marked pixels. Average x and y positions separately.

  • @JismalJamal
    @JismalJamal 10 років тому

    All calculation of the hardware implementation was done in real time with minimal computational effort, thus suitable for power-limited applications.
    Who will power the fpga

  • @juandavidguerrero2299
    @juandavidguerrero2299 10 років тому

    excellent work. Congratulations.

  • @KushagraGupta01
    @KushagraGupta01 9 років тому

    I want to implement this project but I am new to camera interfacing to fpga and i am not able to find much which help me understand from the basic ...it would a great help if you could share any helpful link (related to camera interfacing with fpga)

  • @rne1223
    @rne1223 12 років тому

    I would like to know more about Fpga and tracking, where can I find out more information about it?

  • @FarhanSaeedg
    @FarhanSaeedg 8 років тому

    Hi doctor Bruce, I was looking at the code why avg_out is being multiplied by 16 for value of avg2 register

    • @ece4760
      @ece4760  8 років тому

      did you read the report?

  • @robinkhosla99
    @robinkhosla99 11 років тому

    which camera have you used?
    is it analog or digital?

  • @isaacvongurtberg7341
    @isaacvongurtberg7341 7 років тому

    How many frames per second can you expect from the fpga? I mean if the frame speed wasn't limited by the camera, screen etc...

    • @ece4760
      @ece4760  7 років тому

      it is probably limited by memory access to around 50million pixels/sec. so around 150 fps.

  • @lodevijk
    @lodevijk 12 років тому

    Very neat project! Makes me ashamed I never learned about FPGAs.

  • @spxza
    @spxza 9 років тому

    How well does the skin segmentation work on different skin colours? Especially some of the darker skin colours found in Sub Saharan Africa.

    • @ece4760
      @ece4760  9 років тому

      +MrScout It seems to work fairly well because intensity is factored out and everyone's skin color is based on one chemical with almost constant spectral characterisitcs.

    • @spxza
      @spxza 9 років тому

      +Bruce Land Thank you for the response. I hadn't heard of this technique before (I am by no means a CV expert), but it might work perfectly for my application - also with constrained resources. My current approach fails miserably on very dark skinned people.

    • @ece4760
      @ece4760  9 років тому

      there are lots of research papers on the skin color constancy

  • @mariusdarau9997
    @mariusdarau9997 8 років тому

    Hello!
    The code for the VGA should be written in Verilog direclty or is there any code in Matlab that implements the VGA?

    • @ece4760
      @ece4760  8 років тому

      Code was tested in matlab, then converted manually into verilog. Matlab is not fast enough to do VGA.

    • @mariusdarau9997
      @mariusdarau9997 8 років тому

      Thank you for your response!

    • @keshavpanipat
      @keshavpanipat 7 років тому

      Sir how I convert matlab file into verilog file

  • @RajuRajuRaju11
    @RajuRajuRaju11 6 років тому

    Which camera module is used? can you provide the link or manufacture details. i just want to know whats the interface between camera and FPGA?

    • @ece4760
      @ece4760  6 років тому +1

      Did you read the report? The camera is a generic, NTSC camera connected to the NTSC codec on the DE2 board.

  • @nurfaridairmawati730
    @nurfaridairmawati730 10 років тому

    excuse me..
    i want to ask about the type of your fpga board.
    what type of your fpga board that you use?

    • @ece4760
      @ece4760  10 років тому

      full details at people.ece.cornell.edu/land/courses/eceprojectsland/STUDENTPROJ/2012to2013/tnn7/index.html

    • @nurfaridairmawati730
      @nurfaridairmawati730 10 років тому

      Bruce Land do you have vhdl code? i want to implement edge detection in fpga partan 3a, but i don't know how to insert edge detection code in there. can you help me?

    • @nurfaridairmawati730
      @nurfaridairmawati730 10 років тому

      *spartan

    • @ece4760
      @ece4760  10 років тому

      I do not have vhdl code, nor do we use Xilinx parts. Sorry

  • @fangl.8278
    @fangl.8278 8 років тому

    However, this approach to my home turns out not really good. The wall color reflecting the bulb light just make the false detection everywhere. I guess shape detection would be more reasonable.

  • @jeyakumarr23
    @jeyakumarr23 9 років тому

    hi I have connected a cctv camera and the output RCA cable is given to video in. but the display is not coming in monitor. may i know what might be the problem.

    • @ece4760
      @ece4760  9 років тому

      +Jeyakumar R How could I possibly know what the problem is with so little info. Does the camera produce actual NTSC video. Did you check it? Does the reference video code from Terasic work with your board?

    • @jeyakumarr23
      @jeyakumarr23 9 років тому

      +Bruce Land I am not exactly sure about the output format of my Camera. but when i connected my RCA jack to video in port of TV it works fine. but when the same is connected to video in port of FPGA DE2 board it is not showing anything. May i know what is the problem. ? I tried working with one more code by connecting terasic camera by connecting to GPIO pins. It is working fine.

    • @ece4760
      @ece4760  9 років тому

      Jeyakumar R Was the TV NTSC? When you hook a scope to the camera output is it running at 60 fields/sec? GPIO camera tells you nothing useful.

    • @jeyakumarr23
      @jeyakumarr23 9 років тому

      +Bruce Land yes i understood my problem. CCTV camera does not provide NTSC format. It provides only PAL output. Now how to convert PAL to NTSC format . any idea in DE2 board ?

    • @ece4760
      @ece4760  9 років тому

      +Jeyakumar R It is easier to change the code to work with PAL

  • @vaibhavmathur8804
    @vaibhavmathur8804 9 років тому

    sir ,
    how to convert this project matlab code to hdl code
    what are the steps or software required

    • @ece4760
      @ece4760  9 років тому +1

      +VAIBHAV MATHUR Learn HDL and convert it by understanding the algorithm

  • @basselm.8035
    @basselm.8035 11 років тому

    it detects the human skin not only face,so any idea how make just detect the face.

  • @ocayaro
    @ocayaro 10 років тому

    Good work!

  • @keshavpanipat
    @keshavpanipat 7 років тому

    Can I use a Webcam???.
    Is Webcam video format is same as ntsc,pla,etc

    • @ece4760
      @ece4760  7 років тому

      YOu could easily look this up. How could it be? Every detail of the connection is different.

  • @MikaelMurstam
    @MikaelMurstam 10 років тому

    Interesting approach. Isn't an AI usually used to detect faces? This is adequate for this purpose though. I wonder if a small computer with OpenCV would be more energy efficient.

    • @ece4760
      @ece4760  10 років тому +1

      Don't know. Often, hardware which is purpose built is more efficient, but would be interesting to test.

    • @MikaelMurstam
      @MikaelMurstam 10 років тому

      I've heard that FPGAs usually use up a lot of energy though. ASICS are obviously the best solution but that's a bit hard :P. I'm impressed though. Good work =)

    • @MikaelMurstam
      @MikaelMurstam 10 років тому

      What exactly do I have to study to do this? Is it just EE or Computer Engineering?

    • @ece4760
      @ece4760  10 років тому +1

      Mikael Murstam
      digital design and computer engineering

  • @spaceguo6763
    @spaceguo6763 8 років тому

    hi there,This camera is your designer which used on your project,what the verilog is your language,yeah i am interested in VHDL,ok can we just ... interacting ok ?..

    • @ece4760
      @ece4760  8 років тому +2

      How about you use complete sentences so I can figure out what you are saying?

    • @spaceguo6763
      @spaceguo6763 8 років тому

      Uh.. i mean you did nice . But the hardwear you used should be already made . What about try your best to design one. And so .. next programming..

    • @spaceguo6763
      @spaceguo6763 8 років тому

      My English language gets worse .don't mind

  • @zekkerriyyazekeri4005
    @zekkerriyyazekeri4005 7 років тому

    Hello doctor bruce.Can i implement this using a Zedboard?

    • @ece4760
      @ece4760  7 років тому

      probably. try it.

    • @zekkerriyyazekeri4005
      @zekkerriyyazekeri4005 7 років тому

      +Bruce Land I tried doing it but what OS is your FPGA using,Linux,linaro or Xilinx??

    • @ece4760
      @ece4760  7 років тому

      This FPGA was hardware only, no processor, no OS.

    • @zekkerriyyazekeri4005
      @zekkerriyyazekeri4005 7 років тому

      +Bruce Land Thank you

  • @FarhanSaeedg
    @FarhanSaeedg 8 років тому

    also why avg2 needs to be greater than 959.

  • @anga6275
    @anga6275 6 років тому

    Genious. What is that running on?

    • @ece4760
      @ece4760  6 років тому

      Did you read the linked report?

  • @ece4760
    @ece4760  12 років тому

    You could start with the link given in the video comment.

  • @primaveraarguelleslucho3324
    @primaveraarguelleslucho3324 9 років тому

    apologize to its algorithm converts the image into a matrix ?

    • @alexnice2221
      @alexnice2221 9 років тому

      +Primavera Argüelles Hmm not really. The image is only a matrix in MATLAB. But in Verilog, the image should be stored ( or buffered if it is a live video camera stream) in the fpga memory ( mostly block Ram) as an array of pixels. So after, porting the algorithm from MATLAB to Verilog using the MATLAB HDL coder, the algorithm should now be pointing to the block ram as its image input.

    • @ece4760
      @ece4760  9 років тому

      +alex nice This was not ported using HDL coder. It was ported by writing the Verilog by hand.

    • @alexnice2221
      @alexnice2221 9 років тому

      Bruce Land
      Oh okay, please do u know if they used block ram as image storage ?

    • @ece4760
      @ece4760  9 років тому

      you could read the report

    • @thienlo
      @thienlo 8 років тому

      +alex nice She uses SRAM (maybe SDRAM) as buffer memory. Won't be able to store in BRAM because she uses 640 x 480 resolution unless she has an expensive FPGA.

  • @viploverakheja5645
    @viploverakheja5645 10 років тому

    can you provide the test bench for the same ? please that would be a great help

  • @kapildevparamasivam4024
    @kapildevparamasivam4024 7 років тому

    Which language and tool U r used ?

    • @ece4760
      @ece4760  7 років тому

      Did you read the linked report?

  • @keshavpanipat
    @keshavpanipat 7 років тому

    Sir how can I convert matlab code into verilog code
    Detail any software or step which you used

    • @ece4760
      @ece4760  7 років тому

      the student converted the code by hand by understanding and optimizing each step. No software was used to convert.

    • @keshavpanipat
      @keshavpanipat 7 років тому

      Sir I have two code one for matlab and another for verilog but matlab give exact output but verilog code is not properly run.
      I want to know what operation exactly perform in fpga board

    • @ece4760
      @ece4760  7 років тому

      The verilog code on the FPGA did all operations. Did you read the report?

    • @keshavpanipat
      @keshavpanipat 7 років тому

      Bruce Land
      Yes sir I read all your report. In this you mentioned conversation of matlab code is not a easy task and also write an implementation of morphological filter in verilog is very difficult.
      But in your report a verilog code also give, I want to ask is this code is sufficient for face recognition,if no so what step should I need?
      So please help me on this....

    • @ece4760
      @ece4760  7 років тому

      This project does face DETECTION, it does not do face RECOGNITION. Recognition is much harder. There is a huge ligature on face recognition. Start reading

  • @laggggggggg3
    @laggggggggg3 4 роки тому

    Ugh... and I am here trying to get the HPS to blink some LEDs for me.

    • @ece4760
      @ece4760  4 роки тому

      The HPS is difficult! But since 2016 we have been using it. See people.ece.cornell.edu/land/courses/ece5760/index.html#links

  • @medlb2693
    @medlb2693 6 років тому

    what about face emotion detection on fpga is it possible.

    • @ece4760
      @ece4760  6 років тому

      Code that is not written can do anything. Just ask marketing

    • @ece4760
      @ece4760  6 років тому

      But google "emotion recognition fpga"

    • @medlb2693
      @medlb2693 6 років тому

      do you have a code of emotion recognition fpga.?

    • @ece4760
      @ece4760  6 років тому

      I do not

  • @prashanthreddy9892
    @prashanthreddy9892 9 років тому

    can i get full report in word document.

    • @ece4760
      @ece4760  9 років тому

      +Prashanth Reddy Nope. PDF.

  • @sc0rpi0n0
    @sc0rpi0n0 12 років тому

    pretty awesome concept.

  • @wisnueepis3593
    @wisnueepis3593 6 років тому

    complete tutorial please or at least how to access camera using fpga

    • @ece4760
      @ece4760  6 років тому

      Did you read the linked report?

    • @wisnueepis3593
      @wisnueepis3593 6 років тому

      Oh my bad, thanks anyway

  • @bullmasti3755
    @bullmasti3755 7 років тому

    Great work sir , Is it is possible to extend this technique to recognise face in real time on FPGA.

    • @ece4760
      @ece4760  7 років тому

      recognition is much harder than detection. I do not thik this technique will work for recognition.

    • @bullmasti3755
      @bullmasti3755 7 років тому

      Thanks for your reply. Sir. I thought, if i detect face with this technique, then only the detected portion of video match with data base and apply some technique of face recognition so we able to face recognise. but as your suggestion I leave it.

  • @keshavpanipat
    @keshavpanipat 7 років тому

    Sir I am using zedboard. Your verilog code is compatible with zedboard??
    What steps should be taken to make it compatible with zedboard.

    • @ece4760
      @ece4760  7 років тому

      It is not. Completely recode all device-specific details, like block memory and multipliers.

  • @paraskor7596
    @paraskor7596 5 років тому

    Amazing work can u share the verilog code for this project

    • @ece4760
      @ece4760  5 років тому +1

      Did you follow the link in the video description?

  • @AmazonFindsSpecial
    @AmazonFindsSpecial 8 років тому

    Which FPGA is that?

    • @ece4760
      @ece4760  8 років тому

      did you read the report?

    • @AmazonFindsSpecial
      @AmazonFindsSpecial 8 років тому

      Sorry no. I was trying to get some project ideas.

    • @AmazonFindsSpecial
      @AmazonFindsSpecial 8 років тому

      And thank you, I got the pdf :) I will read.

  • @ahceneouachemi1389
    @ahceneouachemi1389 6 років тому

    sir materials of this project : just camera and fpga board and monitor
    and special camera or any camera !!!

    • @ece4760
      @ece4760  6 років тому

      Did you read te linked report? NTSC camera

    • @ahceneouachemi1389
      @ahceneouachemi1389 6 років тому

      thank you to reponse this project my Graduation .....Yes I read I want to check only....so we need fpga and camera NTSC and monitro !!!!

    • @ece4760
      @ece4760  6 років тому

      @@ahceneouachemi1389 did you read the report? YOu need a DE2 board, a VGA monitor, an NTSC camera, and of course quartus software

    • @ahceneouachemi1389
      @ahceneouachemi1389 6 років тому

      Does he work by xilinx ise sir !!!!

    • @ece4760
      @ece4760  6 років тому

      It would mean completely rewriting the verilog, assuming that the xilinx device includes a video codec

  • @koolyman
    @koolyman 4 роки тому

    yeah that's awesome

  • @yakoubcanal9319
    @yakoubcanal9319 8 років тому

    i want to thank you for this vedio, can you help me to write program code " read and write image" by C language in ISE ->EDK->XPS because i am beginer in FPGA and can we talk special

    • @ece4760
      @ece4760  8 років тому

      I do not use xilinx tools, sorry

  • @kr6249
    @kr6249 6 років тому

    awsome

  • @The2wistArk
    @The2wistArk 6 років тому

    do this user have an email address?

    • @ece4760
      @ece4760  6 років тому

      If you have a quesion, ask it here.

    • @The2wistArk
      @The2wistArk 6 років тому

      @@ece4760 . I am an undergrad student, and my final year project is titled as “Video Compression using FPGA”. To implement FPGA design, I need some guidance from your side.
      I will also like to know that, if I could enroll myself in certain workshop or FPGA learning programs so as to achieve my objective.

      I will be using Xilinx Spartan 6 FPGA family for this project. Please comment on that as well. Will I be able to implement the video compression algorithm on this sort of board provided by digilent atlys.
      Kindly visit this link in order to get an insight to the board that I will be using. store.digilentinc.com/atlys-spartan-6-fpga-trainer-board-limited-time-see-nexys-video/
      Your reply will be a favor

    • @ece4760
      @ece4760  6 років тому

      @@The2wistArk The question you are asking depends on your background. Have you studied design of digital sequential circuits? What do you know about orthogonal transform methods? What do you know about compression? Have you read the Xilinx tutorials for the FPGA. What software are you using? Why did you choose this project?

    • @ece4760
      @ece4760  6 років тому

      Also, of course, google "spartan 6 image compression". or "spartan 6 tutorial"

    • @The2wistArk
      @The2wistArk 6 років тому

      @@ece4760 I always wanted to tackle some challenges .. i knw alot about about digital logic design i hv done the course in my undergrad.. plus i dnt know about vhdl yet nd learning and designing the algo is the real challenge!

  • @Samoloh
    @Samoloh 5 років тому

    Genius

  • @laur-unstagenameactuallyca1587
    @laur-unstagenameactuallyca1587 2 роки тому

    wow

  • @hidude1130
    @hidude1130 7 років тому

    that's so fucking great!!

  • @duongkstn
    @duongkstn 7 років тому

    cool

  • @ieeeprojectguru2062
    @ieeeprojectguru2062 8 років тому

    hi I wanna meet u can we

    • @ece4760
      @ece4760  8 років тому

      +Ieeeproject Guru Meet? Are you in upstate NY?

  • @veyselcambay1671
    @veyselcambay1671 9 років тому

    can you help for fpga

    • @ece4760
      @ece4760  9 років тому

      +Veysel Cambay Depends on what you are asking.

    • @veyselcambay1671
      @veyselcambay1671 9 років тому

      I have DE2 115FPGAs How do I run your program...I try not...

    • @ece4760
      @ece4760  9 років тому

      Veysel Cambay did you read the report?

    • @veyselcambay1671
      @veyselcambay1671 9 років тому

      yes ..but I CAN NOT RUN....CAN YOU HELP ME...

    • @ece4760
      @ece4760  9 років тому

      Maybe, but the only info I have on the project is the report

  • @Amigo5946
    @Amigo5946 Рік тому

    what you do now guys? 10 years last at this moment)

    • @ece4760
      @ece4760  Рік тому

      we now use a DE1-SOC. See course at people.ece.cornell.edu/land/courses/ece5760/index.html
      Also check out Van Hunter Adams youtube channel. www.youtube.com/@hunteradams9430

  • @KushagraGupta01
    @KushagraGupta01 9 років тому

    I want to implement this project but I am new to camera interfacing to fpga and i am not able to find much which help me understand from the basic ...it would a great help if you could share any helpful link (related to camera interfacing with fpga)

    • @ece4760
      @ece4760  9 років тому

      +Kushagra Gupta Did you read the report?

    • @edwardvidal6176
      @edwardvidal6176 9 років тому

      I too am interest in this. Where is the link to the report?

    • @ece4760
      @ece4760  9 років тому

      did you read the video description?

    • @Fu5i0nX
      @Fu5i0nX 9 років тому

      +Kushagra Gupta If you read the description's pdf you can see that she sent the captured frames of the camera through composite(I think ALTERA DE2 has video input), and then did all the algorithms and stuff over that, at least that's what I understand.

    • @ece4760
      @ece4760  9 років тому

      That is correct. The DE2 has composite video (NTSC, PAL, SECAM) input. The hardware codec output is sent to the FPGA where the image is passed thru to DRAM, then analysed on the FPGA