- Ktorými príznakmi popíšeme oblastí na základe vnútra oblastí.
- Popíšte navigačný prístup k výberu obrazov z databázy (CBIR) a používané projekčné metódy.
- Popíšte postup detekcie tvárí pomocou Gaussianov.
- Popíšte Houghovu transformáciu pre priamky ľubovoľného smeru.
- Popíšte Ittiho model vizuálnej pozornosti.
- Popíšte metódu SURF (detektor a deskriptor).
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# funkcia na nacitanie dvoch cisiel | |
def nacitaj_cislo(sprava = nil) | |
print sprava ? sprava : "Zadaj cislo: " | |
gets.chomp.to_i | |
end | |
def nacitaj_znak(sprava = nil) | |
print sprava ? sprava : "Zadaj znak: " | |
get.chomp[0] | |
end |

This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Paint</title> | |
<style id="jsbin-css"> | |
#container { position: relative; } | |
#imageView { border: 1px solid #000; } | |
#imageTemp { position: absolute; top: 1px; left: 1px; } | |
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Alot of these configs have been taken from the various places | |
# on the web, most from here | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# Set the colours you can use | |
black='\033[0;30m' | |
white='\033[0;37m' | |
red='\033[0;31m' |
Sometimes you want to have a subdirectory on the master
branch be the root directory of a repository’s gh-pages
branch. This is useful for things like sites developed with Yeoman, or if you have a Jekyll site contained in the master
branch alongside the rest of your code.
For the sake of this example, let’s pretend the subfolder containing your site is named dist
.
Remove the dist
directory from the project’s .gitignore
file (it’s ignored by default by Yeoman).
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'Matrix' | |
class B | |
attr_accessor :points | |
attr_reader :average | |
def initialize | |
@points = [] | |
@average = [0, 0, 0] |
https://try.github.io/levels/1/challenges/1
https://www.codecademy.com/learn/learn-git
- Do not use ID for styling. IDs are for javascript use only.
- Nesting is not great idea. Rather write longer names. We have autocompletion.
OlderNewer