Paddegan takes you to immersive space travel (ノェェノ): achieve high-quality style migration

[PaddleGAN Immersive space travel 👨‍🚀] Teach you to quickly realize the transfer of high-quality artistic style Can roam the universe without a spaceship?! 👨‍🚀👩‍🚀 You're not dreaming! 🚀 AI art style migration makes your dream come true!!! 🛰 Don't feel out of reach today PaddleGAN Just use the power of AI to lead you on th ...

Posted by atdawgie on Fri, 22 Oct 2021 08:04:50 -0700

[Interpretation of mmDetection Framework] Introduction 1. MMDetection overall construction process, training and testing core components, building fast RCNN configuration file

Preface I am following the monthly release of 2021.09.28: v2.17.0 This article explains the following: mmDetection Training Core ComponentsmmDetection Test Core ComponentsBuild a faster rcnn configuration file using the core components above There is no specific code implementation involved here, but familiarize yourself with the main c ...

Posted by phpcat on Wed, 20 Oct 2021 09:54:58 -0700

[Special Topic on semantic segmentation] work related to semantic segmentation -- work related to ENet network

ENet: A Deep Neural Network Architecture for Real-Time Semantic Segmentation Paszke, A., Chaurasia, A., Kim, S., & Culurciello, E. (2016). ENet: A Deep Neural Network Architecture for Real-Time Semantic Segmentation. ArXiv, abs/1606.02147. # Initial block of the model: # Input # / \ # / \ #maxpoo ...

Posted by nikifi on Mon, 18 Oct 2021 21:12:21 -0700

[Topic on semantic segmentation] work related to semantic segmentation -- full revolutionary densinet

The One Hundred Layers Tiramisu: Fully Convolutional DenseNets for Semantic Segmentation In this paper, DenseNets is extended to solve the problem of semantic segmentation. The best results were obtained on the urban scene benchmark data sets (CamVid and Gatech), without further post-processing modules (such as CRF) and pre training models. In ...

Posted by LOUDMOUTH on Mon, 18 Oct 2021 20:57:06 -0700

OpenCV learning notes and code examples: detailed explanation of the principle and function of Zhang's calibration method for calibrating the camera

catalogue 1. Basic principle of Zhang's calibration method 1.1 camera pinhole model 1.2 homography matrix H 1.3 internal parameters of camera 1.4 external parameters of camera   1.5 optimization parameters 1.6 summary 2.OpenCV implementation 2.1 feature point detection and target coordinate initialization 2.2 camera calibration ...

Posted by pchadwick83 on Tue, 28 Sep 2021 19:01:48 -0700

Fundamentals of digital image processing (openCV)

openCV Window, mouse and keyboard operation Comprehensive example Generate a 500 * 500 pure black canvas, create a window, add mouse events to the window, and use the window to display images import cv2 import numpy as np # Generate 500 * 500 pure black canvas convas = np.zeros(shape=(512, 512, 3), dtype=np.uint8) # crea ...

Posted by eugene2008 on Thu, 23 Sep 2021 15:39:37 -0700

Image classification for deep learning -- a detailed explanation of Vision Transformer(ViT) network

Deep learning image classification (XVIII) detailed explanation of Vision Transformer(ViT) network In the previous section, we talked about the self attention structure in Transformer. In this section, learn the detailed explanation of Vision Transformer(vit). Learning video from Bilibili , refer to blog Detailed explanation of Vision Tran ...

Posted by seaweed on Thu, 09 Sep 2021 21:09:01 -0700

SLIC Superpixel Segmentation (C++)

Summary: SLIC: simple linear iterative clustering, a simple linear iterative clustering, uses k-means clustering to generate super-pixels, which is simple to implement, efficient to run, and has a better boundary preservation effect. The specific results compared with other methods are detailed in the following paper. Paper address:https: ...

Posted by babygodzilla on Fri, 03 Sep 2021 11:40:23 -0700