HaViMo 2.5 - Vision Module for Arduino

Special Price £96.32 £80.27 Regular Price £115.90
SKU
H-HAVIMO2_5
Brand
Hamid

HaViMo 2.5 - Vision Module Shield for Arduino

HaViMo2.5 is a computer vision shield for Arduino. It provides low level, and usually computationally expensive computer vision functionalities for Arduino. The module is equipped with a VGA CMOS Camera. The firmware of the module contains two key pixel-level image processing algorithms.

Region Growing finds and clusters connected areas of the same colour and reports their coordinates as well as other properties.

Gridding reduces the resolution of the image without much data loss thanks to object priorities. The result can be further processed on Arduino to detect shapes and other features.

A colour look-up table is used to associate colours to objects. The look-up table can be accessed using the calibration tool HaViMoGUI. All camera settings can also be accessed using HaViMoGUI or by direct programming.

For more information about the product refer to HaViMo2.5 data sheet.

Getting started with HaViMo2.5

  1. Attach HaViMo2.5 to your Arduino
  2. Attach Arduino to PC via USBcable
  3. Copy and paste the following Arduino Sketch into Arduino IDE.
  4. Compile and flash the program to your Arduino
  5. Download an run HaViMoGUI.
  6. Enjoy using HaViMo2.5
void setup()
{
  pinMode(0,INPUT);
  pinMode(1,OUTPUT);
  pinMode(2,INPUT);
  pinMode(3,OUTPUT);
}
void loop() // run over and over
{
  noInterrupts();
  while(1){
    int rxPC = PIND & 1;
    int rxHaViMo = (PIND>>2) & 1;
    PORTD = rxPC * 8 + rxHaViMo * 2;
  }
}

User's Manual and Additional Resources:

  • For more information about using HaViMo 2.5 with your Arduino (including the Protocol to read and extract Vision results), please refer to the HaViMo2.5 data sheet
0
Rating:
0% of 100
Write Your Own Review
You're reviewing:HaViMo 2.5 - Vision Module for Arduino