Skip to content

Instantly share code, notes, and snippets.

View raquel-oliveira's full-sized avatar

Raquel Oliveira raquel-oliveira

View GitHub Profile
#include "image.h"
void loadImage(const IplImage* img, const char *filename){
img = cvLoadImage(filename, 1);
if (!img) {
printf("Could not load image file");
exit(0);
}
}
/*void getDataImage(const IplImage* img, int* height, int* width, int* step, int* channels, uchar* data ){
http://mass-talk.univ-tlse2.fr
http://webchat.freenode.net
http://eventifier.com/event/lq-nuit-de-linfo-2015/
https://www.youtube.com/watch?v=cIPq8BXDW0k
http://www.nuitdelinfo.com/nuitinfo/defis2015:start
Gene1 60.49 783.22 537.53 83.29 66.46 84.35 55.98 89.98 245.83 416.83
Gene2 39.62 35.81 24.63 12.03 25.86 248.77 227.84 355.61 593.57 140.81
Gene3 115.05 53.20 42.08 33.78 91.59 87.75 55.59 95.90 19.58 101.63
Gene4 206.29 148.45 461.41 328.67 264.74 474.42 540.51 285.45 82.30 231.59
Gene5 194.00 481.03 365.89 536.65 589.75 426.71 359.20 581.38 598.00 604.73
Gene6 221.12 290.70 81.09 466.50 104.26 13.12 259.95 280.23 78.41 92.22
Gene7 43.63 74.73 102.94 179.05 16.97 22.78 48.51 143.42 110.56 171.63
Gene8 10.61 2.69 2.54 6.34 14.10 2.70 5.49 14.03 0.43 6.92
Gene9 275.39 504.11 475.24 40.48 379.11 298.47 25.96 549.02 270.64 304.70
Gene10 36.27 280.71 439.49 426.72 369.80 419.06 173.86 364.51 429.54 10.23
CT1 controle
CT2 controle
CT3 controle
CT4 controle
CT5 controle
c6 caso
c7 caso
c8 caso
c9 caso
c10 caso
@raquel-oliveira
raquel-oliveira / Main.java
Created November 11, 2017 16:06
QGL main(example) to team QAB
package fr.unice.polytech.qgl.qab;
import eu.ace_design.island.bot.IExplorerRaid;
public class Main {
public static void main(String[] args) {
IExplorerRaid raid = new Explorer(); // Empty Constructor
String context =
"{ \n" +
@raquel-oliveira
raquel-oliveira / sonarqube.yml
Created February 5, 2020 17:05
docker-compose -f sonarqube.yml up
version: "3"
services:
sgp_sonarqube:
image: sonarqube:lts
ports:
- "9000:9000"
- "9001:9001"
depends_on:
- sgp_postgres_sonar

Recomendações para mudar o nome da branch master para main

Em termos gerais acredito que o que tem que fazer são essas 4 coisas:

  • Criar a nova branch
  • Caso tenha um PR pra master, tem q mudar pra nova branch (que acho nem tenha agora pq pelo gitflow so vai pra la na hora de uma nova versão, seja de correção ou planejada)
  • Caso tenha uma pré-release tem que colocar pra essa nova branch (também acho que não terá no nosso caso)
  • Tem que alterar as configurações de proteções pra essa nova branch

Opção 1