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
test |
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
test |
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 QtQuick 2.0 | |
Item { | |
property color borderColor : "#ff00f7" | |
Rectangle { | |
id: rectangle | |
color: "#00ffffff" | |
border.color: borderColor | |
border.width: 10 | |
anchors.fill: parent |
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
cmake_minimum_required(VERSION 3.15) | |
project(torc_ssd_hpp) | |
set(CMAKE_CXX_STANDARD 14) | |
find_package(Torch REQUIRED) | |
add_library(torc_ssd_hpp SHARED main.cpp include/api.h) | |
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${TORCH_CXX_FLAGS}") |
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
cmake_minimum_required(VERSION 3.15) | |
project(torchpp) | |
set(CMAKE_CXX_STANDARD 14) | |
find_package(Torch REQUIRED) | |
add_executable(torchpp main.cpp) | |
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${TORCH_CXX_FLAGS}") |
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 QtQuick 2.0 | |
import QtQuick.Controls 2.15 | |
Item { | |
property Text pulicText: textToChange | |
id: groupBox | |
x: 0 | |
y: 0 | |
width: 215 | |
height: 137 |
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 QtQuick 2.0 | |
import QtQuick.Controls 2.15 | |
GroupBox { | |
property Text pulicText: textToChange | |
id: groupBox | |
x: 0 | |
y: 0 | |
width: 215 |
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
FROM python:3.6.5-stretch | |
MAINTAINER Sandeep Srinivasa "[email protected]" | |
ENV DEBIAN_FRONTEND noninteractive | |
RUN pip install Cython | |
RUN pip install Pillow | |
RUN apt-get update && apt-get install -y \ | |
autoconf automake libtool \ | |
rsync \ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder