This file contains hidden or 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
public enum DirectXKeyStrokes | |
{ | |
DIK_ESCAPE = 0x01, | |
DIK_1 = 0x02, | |
DIK_2 = 0x03, | |
DIK_3 = 0x04, | |
DIK_4 = 0x05, | |
DIK_5 = 0x06, | |
DIK_6 = 0x07, | |
DIK_7 = 0x08, |
This file contains hidden or 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
img_bw = img_gray; | |
treshold_level = 0.4; % mean(mean(img_gray)) | |
for i = 1 : info.Height | |
for j = 1 : info.Width | |
if (img_gray(i,j) > treshold_level) | |
img_bw(i, j) = 255; | |
else | |
img_bw(i, j) = 0; | |
end | |
end |
This file contains hidden or 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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
namespace ConsoleApplication2 | |
{ | |
internal class Program | |
{ | |
internal static int[,] Data; |
This file contains hidden or 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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
namespace IziProgZH5 | |
{ | |
class Program | |
{ |
This file contains hidden or 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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
namespace iziprogzh4 | |
{ | |
internal class Program | |
{ |
This file contains hidden or 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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
namespace iziprogzh4 | |
{ | |
internal class Program | |
{ | |
internal static string Caesar(string value, int shift, bool Encrypt = true) |
This file contains hidden or 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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
namespace iziprogzh4 | |
{ | |
internal class Program | |
{ | |
internal static int[] list = new int[100]; |
This file contains hidden or 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
%Csúszó ablak: | |
%t+1 | |
%t <- nyers érték | |
% t-1 <- szűrt érték | |
% t-2 | |
% ... | |
x =[-pi:0.01:pi]; |
This file contains hidden or 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
internal double RadianToDegree(double angle) | |
{ | |
return angle * (180.0 / Math.PI); | |
} |
This file contains hidden or 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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
namespace iziprogzh3 | |
{ | |
internal class Program | |
{ | |
internal static string[] list = new string[] { "alma", "narancs", "barack"}; |
NewerOlder