Jump to content

Question

- - - - -

  • Please log in to reply
17 replies to this topic

#1
Tonchi

Tonchi

    Programming Expert

  • Members
  • PipPipPipPipPipPip
  • 471 posts
  • Location:Varaždin
  • Programming Language:C, C++, C#
i want to know how people can develop some program which can compare 2 pictures and program tells you if those pictures are same

#2
Momerath

Momerath

    Programming Professional

  • Members
  • PipPipPipPipPip
  • 242 posts
Depends on your definition of "same". You can compare bit by bit, do color maps, intensity maps, color histograms, etc.

#3
Tonchi

Tonchi

    Programming Expert

  • Members
  • PipPipPipPipPipPip
  • 471 posts
  • Location:Varaždin
  • Programming Language:C, C++, C#
this sound very complicated

#4
wwarren

wwarren

    Learning Programmer

  • Members
  • PipPipPip
  • 60 posts
Well, do you want to know if they are exactly the same file?

#5
Tonchi

Tonchi

    Programming Expert

  • Members
  • PipPipPipPipPipPip
  • 471 posts
  • Location:Varaždin
  • Programming Language:C, C++, C#
no...my idea was to create something like CODIS (from CSI: Miami)

#6
wwarren

wwarren

    Learning Programmer

  • Members
  • PipPipPip
  • 60 posts
CODIS is a system for storing and retrieving DNA profiles. I think what you're asking is if it's possible to create a system that can look at 2 different photos of a person, and tell you if they're the same person.

Am I on the right track?

#7
Tonchi

Tonchi

    Programming Expert

  • Members
  • PipPipPipPipPipPip
  • 471 posts
  • Location:Varaždin
  • Programming Language:C, C++, C#
yes...yo're correct

#8
wwarren

wwarren

    Learning Programmer

  • Members
  • PipPipPip
  • 60 posts
Okay.

This is not a simple task. I suggest you begin by Googling for "facial recognition in c#" and do some further reading into the algorithms and concepts that you will need.

Good Luck!

#9
Tonchi

Tonchi

    Programming Expert

  • Members
  • PipPipPipPipPipPip
  • 471 posts
  • Location:Varaždin
  • Programming Language:C, C++, C#
what is element siblings in xml

#10
wwarren

wwarren

    Learning Programmer

  • Members
  • PipPipPip
  • 60 posts
In an XML document like this:

<parent>

    <child1></child1>

    <child2></child2>

</parent>

The nodes child1 and child2 are siblings.

#11
Tonchi

Tonchi

    Programming Expert

  • Members
  • PipPipPipPipPipPip
  • 471 posts
  • Location:Varaždin
  • Programming Language:C, C++, C#
but if there is 4 child elements then they are all siblings, right???

#12
wwarren

wwarren

    Learning Programmer

  • Members
  • PipPipPip
  • 60 posts
Yes. That's correct

<parent>

    <child1></child1>

    <child2></child2>

    <child3></child3>

    <child4></child4>

</parent>

Child nodes 1-4 are all siblings.




1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users