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
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
# By Marek Łukasiewicz 2019 | |
filenames = ['GarminGoracy.txt', 'GarminZimny.txt', 'NovatelEgnos.txt', 'NovatelGoracy.txt', 'NovatelZimny.txt'] | |
for filename in filenames: | |
infile = open(filename, 'r') | |
out_gga = open('gga_' + filename, 'w') |
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
# A script to improve color channels in diving videos | |
# By Marek Lukasiewicz 2018 | |
# http://lukasiewicz.tech | |
# Requires python openCV with ffmpeg installed to open all video types | |
# Requires ffmpeg installed command ffmpeg used to copy sound from original video | |
from os import system, remove | |
from sys import argv | |
import numpy as np |
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 UnityEngine; | |
// Skrypt do wykładu "Move ya body" w KNTG Polygon 18.10.2017 | |
[RequireComponent(typeof(LineRenderer))] | |
public class InputChart : MonoBehaviour { | |
// Dla domyślnej kamery w projekcie 2D wystarczy wrzucić ten GameObject na pozycję (-8, 0, 0) | |
public int pointsCount = 80; | |
public float scaleY = 4f; |
NewerOlder