-
- Campaign completed or Multiplayer more than 100 hours
-
- Campaign not finished or Multiplayer less than 100 hours
-
🎧 - Beautifully composed audio works
-
🎬 - Praise the VFX team
-
🎨 - Immersive graphics
-
🍛 - Tasteful gameplay
-
🔬 - Its not just a game ...
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
<html> | |
<head> | |
<title>Checkin Logo</title> | |
<meta author="maaraa"> | |
<style> | |
body { | |
background-color: white; | |
} | |
#parent{ | |
position: absolute; |
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
import cv2 as cv | |
import numpy as np | |
img = cv.imread('excited.jpg',0) | |
kernel = np.ones((13,13),np.uint8) | |
top_hat = cv.morphologyEx(img, cv.MORPH_TOPHAT, kernel) | |
backtorgb = cv.cvtColor(top_hat,cv.COLOR_GRAY2RGB) | |
l, a, b = cv.split(backtorgb) | |
# cv.imwrite('l_channel.jpg', l) |
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
/** | |
* Тоог уншигдах байдлаар нь бичих | |
* Жишээ нь: 1996 = мянга есөн зуун ерөн зургаа | |
* | |
* @param str Тоо бүхий текст | |
* @return уншигдахгүйц тест | |
*/ | |
public static String numberToText(String word){ | |
char[] chars = word.toCharArray(); | |
int divider = chars.length / 3; |
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
Хийсвэр төсөөллийн далайд | |
Хөлгүй хол хөвжээ | |
Биегүй зүүднийхээ ертөнцөд | |
Би өөрийгөө хорьжээ | |
Хязгааргүй мэт тэр ертөнцийг | |
Харж огт болдоггүй юм | |
Магад чи мэдхийг хүсвэл | |
Маргаангүй цаг хуагцаа л туслана | |
Туйлгүй тэр ертөнцийн | |
Тулах цэг нь |
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
/* | |
* To change this license header, choose License Headers in Project Properties. | |
* To change this template file, choose Tools | Templates | |
* and open the template in the editor. | |
*/ | |
package portraitart; | |
import java.util.concurrent.ThreadLocalRandom; | |
import org.opencv.core.Core; | |
import org.opencv.core.Mat; |