Skip to content Skip to sidebar Skip to footer
Showing posts with the label Convolution

Moving Average Of 3 Elements By C Or Python

I want to calculate the moving average of 3 elements. For example, I have a 25 elements of sales d… Read more Moving Average Of 3 Elements By C Or Python

Strided Convolution Of 2d In Numpy

I tried to implement strided convolution of a 2D array using for loop i.e arr = np.array([[2,3,7,4… Read more Strided Convolution Of 2d In Numpy

3d Convolution In Python

I need to wite a code to perform a 3D convolution in python using numpy, with 3x3 kernels. I've… Read more 3d Convolution In Python

Training On The Merged Layer In Keras

I am implementing following this paper by Mohammad Havaei. It uses following architecture: I have … Read more Training On The Merged Layer In Keras

Keras - Cnn Model Summary Diemension Interpretation

I am using Keras library to build this deep learning model: INPUT(depth=1, height=15, width=27) -&g… Read more Keras - Cnn Model Summary Diemension Interpretation

Image Processing - Eliminate Arc-like Smears

I am dealing with this kind of image (upper is post-processed) (lower is raw) So, first I converte… Read more Image Processing - Eliminate Arc-like Smears

Numpy Filter To Smooth Out Zero-regions

I have a 2D numpy array of ints 0 and greater, where the values represent region labels. For exampl… Read more Numpy Filter To Smooth Out Zero-regions