Skip to content
View igooor-bb's full-sized avatar
🏠
Working from home
🏠
Working from home
Block or Report

Block or report igooor-bb

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
igooor-bb/README.md

Hi! My name is Igor Belov and I am iOS Developer.

I am interested in various fundamental computer science topics and like to understand how things work under the hood.

You can reach me using the followings:

Twitter · Instagram · LinkedIn · Email

Pinned

  1. igooor-bb.github.io igooor-bb.github.io Public

    Repository of the personal blog

    HTML 1

  2. JustPhotoPicker JustPhotoPicker Public

    Simple and minimalistic photo picker for iOS written in Swift

    Swift 10 1

  3. GreedyKit GreedyKit Public

    Components written in Swift for preventing sensitive media data to be captured

    Swift 19 3

  4. clickcaramel/PolyglotRocks clickcaramel/PolyglotRocks Public

    Tool that simplifies the localization process for your iOS mobile app

    Shell 19

  5. Similarity of images in Swift Similarity of images in Swift
    1
    import Accelerate
    2
    
                  
    3
    /// A function for checking two images for similarity.
    4
    /// The returned result is the percentage of similarity, where 1 is the result of comparing identical images.
    5
    /// The implementation uses Accelerate to speed up similar operations on vectors.
  6. Calculating Histograms in Swift Calculating Histograms in Swift
    1
    import Accelerate
    2
    
                  
    3
    func calculateHistogram(image: CGImage) -> [[vImagePixelCount]] {
    4
        let format = vImage_CGImageFormat(
    5
            bitsPerComponent: 8,